I am trying to prevent index.php
from redirecting to a file index.html
which I also have in the home directory. I want index.html
to remain there for a few days until the WordPress site is finished, being the page that visitors will see, and I'd access the new installation by adding index.php
to the url; but WordPress redirects index.php
to index.html
meaning that I can only view the pages and posts and not the home page. I have tried putting remove_filter('template_redirect', 'redirect_canonical');
into the functions.php
file but it doesn't work.
I am trying to prevent index.php
from redirecting to a file index.html
which I also have in the home directory. I want index.html
to remain there for a few days until the WordPress site is finished, being the page that visitors will see, and I'd access the new installation by adding index.php
to the url; but WordPress redirects index.php
to index.html
meaning that I can only view the pages and posts and not the home page. I have tried putting remove_filter('template_redirect', 'redirect_canonical');
into the functions.php
file but it doesn't work.
2 Answers
Reset to default 1Try adding this to your .htaccess file:
RewriteRule ^index\.htm$ index.php [NC,R]
SOURCE: http://css-tricks/377-how-to-redirect-indexhtml-to-indexphp/
Found the problem - you have to access index.php/ not just index.php
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745302187a4621501.html
评论列表(0条)