Rewrite rules for Zeus Web Server

Folks

Does anyone run yii under Zeus web server and if so have you converted the required apache .htaccess rules to a format compatible with Zeus?

root level .htaccess


Options +FollowSymLinks

IndexIgnore /

RewriteEngine on

if a directory or a file exists, use it directly

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

otherwise forward it to index.php

RewriteRule . index.php

protected folder .htaccess


deny from all

I would be grateful if someone could post a guide to enabling the required rewrite rules on a zeus web server.

Thanks

Try this

RewriteRule ^.*$ /index.php

I know this is an old topic, but I have added what worked for me in this thread:

http://www.yiiframework.com/forum/index.php?/topic/6752-solved-the-problem-of-url-rewriting-and-hiding-index-php/