我需要将任何不是index.php的索引文件重定向到该文件。我不太可能在URL中明确命名另一种类型的索引文件。这有望防止任何404文件找不到错误。
答案 0 :(得分:1)
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !^(.*/)index\.php$ [NC]
RewriteRule ^ /profordable/index.php [L,R]