View Single Post
  #6  
Old 02-12-2013, 01:46 AM
nnpro nnpro is offline
New Member
 
Join Date: Feb 2013
Posts: 3
SOLVED:

it appears to be working fine now.
All the 404 errors from todays' replies have been caused by commented-out rewrite rule for resources which are magento-internal and handled by index.php:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php [L]

I've re-enabled these because Magento can't work without them.

All other rewrite problems appear to be caused by incorrectly *positioned* new rewrite rules which were added to compensate for setenv directive (which exists only in Apache, but not in Litespeed).
Rewrite rules have to be ordered correctly, because their ordering is what determines the rule precedence. So, I just moved those rules above index.php rule, and it all appears to be working now.
Reply With Quote