While we do support .htaccess files, much of the mod_rewrite functionality is not available.
However, you can use Zeus rewrite rules which work in a very similar way. For example, a mod_rewrite rule of:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^[^/]*\.html$ index.phpWould convert to:
match URL into $ with ^/[^/]*\.html$ if matched then set URL = /index.php
This should be placed in a file named rewrite.script in your web directory. More information is available at http://support.zeus.com/zws/media/docs/htaccess/tutorial.html
You will be able to find a full and detailed explanation in the Zeus Web Server manual at support.zeus.com.
This feature is only available on our Linux hosting packages.

