LiteSpeed Support Forums

LiteSpeed Support Forums (http://www.litespeedtech.com/support/forum/index.php)
-   General (http://www.litespeedtech.com/support/forum/forumdisplay.php?f=25)
-   -   moving htaccess content to httpd.conf (http://www.litespeedtech.com/support/forum/showthread.php?t=6644)

MentaL 02-07-2013 11:27 AM

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

NiteWave 02-07-2013 05:13 PM

http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html
rewriterule has a bit difference in per-server or per-directory context.

Quote:

RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]
RewriteRule ^(.+)$ vbseo.php [L,QSA]
==>
Quote:

RewriteRule ^/((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ /vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
RewriteRule ^/((archive/)?(.*\.php(/.*)?))$ /vbseo.php [L,QSA]
RewriteRule ^/(.+)$ /vbseo.php [L,QSA]
in short, need add some / in some rewriterules


All times are GMT -7. The time now is 03:09 PM.