通过php脚本将域重定向到index.php

时间:2013-07-08 13:23:57

标签: php redirect indexing

我无法让我的网站自动从我的域重定向到我的index.php文件,也就是说,我不能: www.mysite.com ==> www.mysite.com/index.php,当我进入www.mysite.com

我无法编辑任何.htacces或类似的配置文件,因为我的网站托管在托管服务提供商上,不允许我编辑此类文件。 我是否有办法使用某些PHP脚本,以便能够将我的主域名重定向到index.php? THKS 微米。

2 个答案:

答案 0 :(得分:1)

从您的网站中删除index.html页面,然后添加index.php页面,

它会重定向到www.mysite.com/index.php

答案 1 :(得分:1)

如果您能够编辑.htaccess,可以使用:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www\.)?example\.com$
RewriteRule ^$ http://www.example.com/index.php [L,R=301]

但如果不是,那么您可以在index.html文件中添加:

<meta http-equiv="refresh" content="1;url=http://www.mysite.com/index.php">

这是一个可接受的解决方案,效果很好,但肯定不是最佳解决方案。

希望这有帮助!