猿问

面对 html 站点上的 url 重定向问题

我有一个 html 网站,想将 mbcv.com 重定向到 mbcv.com/index.html,所以当任何人键入 mbcv.com 时,它会重新定向到 mbcv.com/index.html 我添加了 js 代码但是当页面正在加载它正在加载,无限时间刷新不会停止。这些代码对我不起作用


 <meta http-equiv="refresh" content="0; URL="/index.html" />


 <script type="text/javascript>">

 window.location = "/index.html";

 </script>


GCT1015
浏览 105回答 4
4回答

忽然笑

if&nbsp;(window.location.pathname&nbsp;==&nbsp;"/")&nbsp;{ &nbsp;&nbsp;&nbsp;window.location.href&nbsp;=&nbsp;"/index.html"; }

尚方宝剑之说

也许可以帮助你:<script type="text/javascript>">&nbsp; &nbsp;if (window.location.pathname === "/") {&nbsp; &nbsp; &nbsp; &nbsp;window.location = "/index.html";&nbsp; &nbsp; }</script>

函数式编程

尝试制作一个 index.js 文件,然后将其链接到 html 文件,因为问题可能是您试图链接到与您的 html 站点所在站点相同的文件中的另一个站点。

慕的地8271018

试试这个它会在加载时重定向window.addEventListener('load',&nbsp;(event)&nbsp;=>&nbsp;{window.location.replace("Your");});
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答