META HTTP-EQUIV ='刷新'在Chrome和Firefox中

时间:2015-05-17 00:09:51

标签: google-chrome url firefox tags refresh

我正在使用这段代码在显示消息后预先刷新当前页面。

?>
<META HTTP-EQUIV='refresh' content='2;URL=./profile-manager/editprofile'>
<?

site.com/profile-manager/editprofile

问题是链接在chrome中刷新得很好但在firefox中

site.com/profile-manager/editprofile/profile-manager/editprofile

它是双重链接?

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

您只需删除前导.

即可
<meta http-equiv='refresh' content='2; URL=/profile-manager/editprofile'>

如果您在www.example.org/test/file上托管了一个网站,并指向/file2的链接,则会将您重定向到www.example.org/file2。前导/表示文件是或路径从根文件夹(www.example.org/)开始。如果您不是以/开头而是使用file2,则系统会将您重定向到位于当前文件夹中的www.example.org/test/file2。使用./file2通常应该像Firefox一样(与使用file2的方式相同)。