apache重写index.php跟尾/

时间:2014-04-11 14:44:39

标签: apache .htaccess

我在其中一个域上安装了一个wordpress网站。我决定删除它并创建一个新的自定义网站。

然而,在我的日志中,我看到访问旧的wordpress网站网址,不再存在。

访问的页面类似以下两页

http://betbusters.net/index.php/blog (注意index.php之后的尾部斜杠)

这些页面不提供404,因为index.php页面存在。 然而,index.php的尾随/后面给页面带来了非常奇怪的结果。

有没有办法将index.php / title / title2重写为普通的index.php? (请注意,我将使用index.php?variable = 5& something = 10)等链接

1 个答案:

答案 0 :(得分:1)

您可以将此规则用作根目录中的第一条规则.htaccess:

RewriteRule ^(index\.php)/ /$1 [L,NC,R=301]