我希望将此.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>
答案 0 :(得分:3)
我会看一下从Apache迁移的lighttpd教程。据我所知,Apache没有直接映射重写。