mod_rewrite不工作 - 不断收到500内部服务器错误

时间:2014-01-05 22:09:59

标签: php apache mod-rewrite

环境: Apache 2.0.63 PHP 5.3.x。

我的网站是www。 * **** .com / LandlordApp / index.php

我希望能够将所有流量重定向到索引文件吗?

我尝试过以下操作,但不断收到“500内部服务器错误”:

<Directory /LandlordApp>
RewriteEngine On
RewriteBase /LandlordApp/
RewriteRule ^index.php$ 
</Directory>

非常欢迎所有帮助。

谢谢

1 个答案:

答案 0 :(得分:0)

我会把它放在你的LandlodApp目录中

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>