请教php 301站内跳转问题
我的站内跳转都是通过go.php文件实现的,主要跳转内容:header("HTTP/1.1 301 Moved Permanently");
header("refresh:3; location:http://www.amazon.com/dp/xxxx");
之前都没问题,等待3s过度界面,提示用户正在跳转到amazon站点。但最近发现,用IE跳转不了,奇怪的是360浏览器,手机浏览器都可以跳转。
大家的跳转都是这样做的吗?实在是不知道怎么弄了
refresh:3 不标准写法IE识别不了
月光飞燕 发表于 2014-9-24 11:40 static/image/common/back.gif
refresh:3 不标准写法IE识别不了
YG姐,可否指点一下,怎么写IE才标准呢?多谢!
现在唯一的做法是把refresh:3去掉了,只是没有等待提示界面。。
header("HTTP/1.1 301 Moved Permanently");
header("location:http://www.amazon.com/dp/xxxx");
解决了吗?也贴下解决方法才圆满
我直接把header("HTTP/1.1 301 Moved Permanently");去掉了,现在可以用。
页:
[1]