Auto-redirect to another HTML page

前端 未结 7 547
眼角桃花
眼角桃花 2020-12-13 12:58

What is the syntax for making a page auto-redirect to a different HTML file in a separate folder? All of my searching returns how to redirect from one website to another.

相关标签:
7条回答
  • 2020-12-13 13:53

    I'm Maybe kind of late but here is a way to have a redirect for your website and another link if it does not do in auto redirect for them,

    <meta charset="UTF-8" />
    <meta http-equiv="refresh" content="5; url=YOUR_URL_HERE" />
    <script type="text/javascript">
      window.location.href = "site";
    </script>
    <title>Page Redirection</title>
    
    <!-- Note: don't tell people to `click` the link, just tell them that it is a link. -->
    If you are not redirected automatically, follow this <a href="/site">Link</a>
    
    0 讨论(0)
提交回复
热议问题