.htaccess重定向断开的链接domain.com/.php

时间:2013-12-06 07:56:06

标签: php .htaccess redirect

我需要重定向破坏的网址,如

domain.com/.php到domain.com/index.php

任何人都知道如何?我尝试使用像

这样的htaccess生成器

http://htaccessredirect.net/index.php

并获取此代码,但重定向循环/错误

我尝试过以下代码,但无法正常工作

Redirect 301 /.php index.php

我也尝试了,但错误

RewriteCond %{HTTP_HOST} ^/.php$
RewriteRule ^$ index.php [L,R=301]

1 个答案:

答案 0 :(得分:0)

你需要逃避这段时间,否则它将成为正则表达式的一部分。

像这样:

RewriteRule ^/\.php$ /index.php [L,R=301]

或:

RedirectMatch 301 ^/\.php index.php