mod将任何索引文件重写为301以索引到index.php

时间:2013-07-17 17:47:20

标签: mod-rewrite

我需要将任何不是index.php的索引文件重定向到该文件。我不太可能在URL中明确命名另一种类型的索引文件。这有望防止任何404文件找不到错误。

1 个答案:

答案 0 :(得分:1)

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_URI} !^(.*/)index\.php$ [NC]
RewriteRule ^ /profordable/index.php [L,R]