View Single Post
  #1  
Old 02-07-2013, 11:27 AM
MentaL MentaL is offline
Senior Member
 
Join Date: Nov 2010
Posts: 57
Default moving htaccess content to httpd.conf

Hi

I'm having issues getting litespeed to actually load new rules that have been moved into httpd.conf. Assistance is appreciated.

Thanks.

configurations loaded; /usr/local/apache/conf/forum.htaccess.conf
Content

Code:
<Directory /home/x/public_html/forum>
RewriteEngine On
#vBseo configuration
RewriteCond &#37;{HTTP_HOST} ^[0-9]+(\.[0-9]+){3} [OR]
RewriteCond &#37;{HTTP_HOST} ^(www.forum.x.com) [NC]
RewriteRule ^(.*)$ http://forum.x.com/$1 [R=301,L]
RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
RewriteCond &#37;{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap|api\.php)
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !/(admincp007|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ vbseo.php [L,QSA]

<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
</directory>
#update

got it working, had to remove directory

Last edited by MentaL; 02-07-2013 at 11:40 AM..
Reply With Quote