【发布时间】:2016-12-12 08:01:50
【问题描述】:
我正在尝试将rootdomain.com/index.php 重定向到rootdomain.com,并且只是根目录,而不是任何以index.php 结尾的子目录
我试过了
Redirect 302 ^(.*)index.php$ /$1/
Redirect 302 ^(.*)index.php$ $1/
RewriteRule ^(.*)index.php$ $1/ [R=302,L]
RewriteRule ^(.*)index.php$ / [R=302,L]
RewriteRule ^(.*)index.php$ $1/ [R=302,L,QSD]
RewriteRule ^(.*)index.php$ / [R=302,L,QSD]
(我意识到还有其他类似的问题。但是其他问题中的解决方案对我不起作用)
【问题讨论】:
标签: .htaccess apache2 url-redirection