我有一个 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"; }
尚方宝剑之说
TA贡献1788条经验 获得超4个赞
也许可以帮助你:
<script type="text/javascript>">
if (window.location.pathname === "/") {
window.location = "/index.html";
}
</script>
函数式编程
TA贡献1807条经验 获得超9个赞
尝试制作一个 index.js 文件,然后将其链接到 html 文件,因为问题可能是您试图链接到与您的 html 站点所在站点相同的文件中的另一个站点。
慕的地8271018
TA贡献1796条经验 获得超4个赞
试试这个它会在加载时重定向
window.addEventListener('load', (event) => {window.location.replace("Your");});
添加回答
举报
0/150
提交
取消