PHP - URL重定向奇怪的行为

时间:2016-09-22 10:37:19

标签: javascript php html url url-redirection

我有一个PHP代码,我在其中显示加载图标,然后重定向到URL 让我们说

loadingIcon =“/ src / images / load.png”

location =“default.html”;

问题是,在页面上不断显示加载图标,并且不会继续进行default.html重定向。

但是,如果我将位置替换为其他类似的 location =“google.com”

它会显示加载图标,然后完美地转到google.com。

这基本上说明问题出在default.html页面,但我尝试在本地打开页面,并且它正常工作。

这件事的可能原因是什么?

请建议 提前谢谢

1 个答案:

答案 0 :(得分:0)

替换

location = "default.html";

location = "yourdomain.com/pathtofile/default.html";

location = "../../default.html";

注意:“../../”应该是文件的确切相对路径。