我需要重定向破坏的网址,如
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]
答案 0 :(得分:0)
你需要逃避这段时间,否则它将成为正则表达式的一部分。
像这样:
RewriteRule ^/\.php$ /index.php [L,R=301]
或:
RedirectMatch 301 ^/\.php index.php