如何立即(自动)链接到另一页

这个问题在这里已经有了答案:

  • 从HTML页面重定向25个答案

  • 尝试这个:

    <meta http-equiv="Refresh" content="0;url='http://rush.rocksolidpromotion.com/rush/home.html'" />
    
    <script>window.location.replace('http://rush.rocksolidpromotion.com/rush/home.html')</script>
    

    把它放在head标签中:

    <meta http-equiv="refresh" content="0;URL=rush.rocksolidpromotion.com/rush/home.html">
    

    如果浏览器忽略content 0您还应该使用JavaScript。 如果你在一个php页面上,也是一个标题重定向。

    链接地址: http://www.djcxy.com/p/15715.html

    上一篇: How to Immediately (automatically) Link to Another Page

    下一篇: Redirect old page to new page HTML