为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

GCT1015 2023-02-17 16:24:27
我有一个 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>
查看完整描述

4 回答

?
忽然笑

TA贡献1806条经验 获得超5个赞

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


查看完整回答
反对 回复 2023-02-17
?
尚方宝剑之说

TA贡献1788条经验 获得超4个赞

也许可以帮助你:


<script type="text/javascript>">

   if (window.location.pathname === "/") {

       window.location = "/index.html";

    }

</script>


查看完整回答
反对 回复 2023-02-17
?
函数式编程

TA贡献1807条经验 获得超9个赞

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



查看完整回答
反对 回复 2023-02-17
?
慕的地8271018

TA贡献1796条经验 获得超4个赞

试试这个它会在加载时重定向

window.addEventListener('load', (event) => {window.location.replace("Your");});


查看完整回答
反对 回复 2023-02-17
  • 4 回答
  • 0 关注
  • 104 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信