如何在重命名索引页面后将用户重定向到新网页?

时间:2013-09-06 04:44:01

标签: php html web indexing

我正在开发一个新网站。我的网站的旧名称是home.html,现在我将其更改为index.php。当我打开网站时,它正在转移到home.html而不是index.php。如何解决这个问题呢?有谁可以帮助我?

2 个答案:

答案 0 :(得分:0)

<meta http-equiv="refresh" content="0; url=http://yoursite.com/index.php"> 

答案 1 :(得分:0)

index.php或index.html 应该是您的服务器在访问网站时加载的默认文件,而不是home.html。尝试清除缓存。如果这没有帮助,它可能是httpd.conf中的一个问题 - 但在这种情况下听起来有点极端。

您还可以考虑在.htaccess文件中使用mod_rewrite,以便重定向发生在服务器级别

Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /

# redirect home.html to index.php
RewriteRule ^home.html index.php [R=301,L]