Apache mod rewrite rules to Zeus rewrite rules
- by Nicolas
Hi,
This morning I wanted to move my development website online (in a protected folder), but I figured out that our host (on a shared server) does not use apache mod_rewrite but Zeus rules. I've never heard about that before but it seems that apache rules could be automatically converted via a command line, but as you can guess I have no such access on the server.
So, do you know any online coverter from Apache rules to Zeus ones? (I tried google but found nothing).
Or could someone translate these simple rules with his server:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
It should normaly be something like:
match URL into $ with ^[^\/]*\.html$
if matched then
set URL = index.php
endif
But it just doesn't do anything, just the annoying 404 error page.
Cheers,
Nicolas.