Конвертировать правила mod_rewrite в веб-сервер Zeus
Мне нужно запустить этот файл Apache .htaccess на сервере Zeus, но я не уверен, как сделать его совместимым с Zeus.
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
#//not to effect images or style sheets
RewriteCond %{REQUEST_FILENAME} !-d
#//not to effect directory's
RewriteRule ^(.*)$ index.php?page=$1 [L,QSA]