Disable redirect canonical

时间:2011-10-13 作者:byronyasgur

我正试图阻止index.php 从重定向到文件index.html 我在主目录中也有。我想要index.html 在WordPress站点完成之前的几天里,这是访问者将看到的页面,我将通过添加index.php 到url;但是WordPress重定向index.phpindex.html 这意味着我只能查看页面和帖子,而不能查看主页。我试过remove_filter(\'template_redirect\', \'redirect_canonical\'); 进入functions.php 但它不起作用。

2 个回复
最合适的回答,由SO网友:byronyasgur 整理而成

发现问题-您必须访问索引。php/不仅仅是索引。php

SO网友:Jeremy Jared

尝试将此添加到。htaccess文件:

RewriteRule ^index\\.htm$ index.php [NC,R]
SOURCE:http://css-tricks.com/377-how-to-redirect-indexhtml-to-indexphp/

结束