
02-23-2013, 08:41 PM
|
|
LiteSpeed Staff
|
|
Join Date: Sep 2009
Posts: 2,226
|
|
Code:
now to the interesting parts. if i use .htaccess the rewrite rules work. if i use litespeed nativ rewrite settings under virtual hosts -> rewrite the rules result in 404s.
it's difference between per-server and per-directory rewriterule.
refer apache document:
http://httpd.apache.org/docs/current...d_rewrite.html
for these rules, I think
RewriteRule .* index.php [F] --> RewriteRule .* /base/index.php [F]
RewriteRule .* index.php [L] --> RewriteRule .* /base/index.php [L]
and comment out
#RewriteBase /base/
should work under virtual host
|