Hello,
I used Apache before with this .htaccess in VHost Root dir:
For example, if server can't find some file it's rewrite to index.php to download and save it.
For some reason LiteSpeed always show 404 error and do not rewrite request to index.php
I used Apache before with this .htaccess in VHost Root dir:
Code:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?!$1!&%{QUERY_STRING} [L]
For some reason LiteSpeed always show 404 error and do not rewrite request to index.php