环境: Apache 2.0.63 PHP 5.3.x。
我的网站是www。 * **** .com / LandlordApp / index.php
我希望能够将所有流量重定向到索引文件吗?
我尝试过以下操作,但不断收到“500内部服务器错误”:
<Directory /LandlordApp>
RewriteEngine On
RewriteBase /LandlordApp/
RewriteRule ^index.php$
</Directory>
非常欢迎所有帮助。
谢谢
答案 0 :(得分:0)
我会把它放在你的LandlodApp目录中
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>