如何将Apache.htaccess重写规则转换为lighttpd

如何将Apache.htaccess重写规则转换为lighttpd,apache,.htaccess,lighttpd,Apache,.htaccess,Lighttpd,我想把这个.htaccess文件转换成lighttpd重写规则,有人能帮我解决这个问题吗 Options -MultiViews DirectoryIndex index.php <IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^$ index.php [QSA,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILEN

我想把这个.htaccess文件转换成lighttpd重写规则,有人能帮我解决这个问题吗

Options -MultiViews
DirectoryIndex index.php
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule ^$ index.php [QSA,L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
<IfModule mod_php5.c>
    php_flag display_errors On
</IfModule>
选项-多视图
DirectoryIndex.php
重新启动发动机
重写规则^$index.php[QSA,L]
重写cond%{REQUEST_FILENAME}-F
重写cond%{REQUEST_FILENAME}-D
重写规则^(.*)$index.php[QSA,L]
php_标志显示上的错误

我将看一看从Apache迁移的lighttpd教程。据我所知,Apache没有直接映射用于重写