リンク/URL/アドレスに移動する方法を知っています。
window.location = "www.example.com/index.html";
また
document.location.href="www.example.com/index.html";
index1.html
しかし、 からにナビゲートしたい場合、接頭辞index2.html
を提供せずにこれを実現するにはどうすればよいでしょうか? グローバル変数/定数www.example.com/
に設定することを提案しないでください。www.example.com/
アドレスは ... に変更さwww.example2.com/subfolder1/subfolder2/
れる場合があります。www.examplea.com/
前述の方法は、ルートページの場合にのみ機能します。つまり、にとどまっている場合でも、を提供するdocument.location.href="index.html";
とブラウザが に移動します。しかし、私はに移動したいrootdomain/index.html
rootdomain/section1/section2/somepage.html
rootdomain/section1/section2/index.html
ページ名だけを指定してこれを達成するにはどうすればよいですか?