0

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

我无法编辑任何 .htacces 或类似的配置文件,因为我的网站托管在不允许我编辑此类文件的托管服务提供商上。我有办法使用一些 php 脚本,能够将我的主域重定向到 index.php 吗?谢谢 M。

4

2 回答 2

1

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

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

于 2013-07-08T13:25:56.323 回答
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">

这是一个可以接受的解决方案并且工作得很好,但它肯定不是最好的解决方案。

希望这可以帮助!

于 2013-07-08T13:33:09.813 回答