Apache mod rewrite rules to Zeus rewrite rules
        Posted  
        
            by Nicolas
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Nicolas
        
        
        
        Published on 2010-06-04T08:53:22Z
        Indexed on 
            2010/06/07
            9:52 UTC
        
        
        Read the original article
        Hit count: 711
        
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.
© Stack Overflow or respective owner