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

时间:2014-11-24 22:35:44

标签: 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_FILENAME} !-d
    RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
<IfModule mod_php5.c>
    php_flag display_errors On
</IfModule>

1 个答案:

答案 0 :(得分:3)

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

http://redmine.lighttpd.net/wiki/1/MigratingFromApache