【发布时间】:2014-11-24 22:35:44
【问题描述】:
我希望将此 .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>
【问题讨论】: