亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

面對 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 關注
  • 141 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號