JavaScriptでリダイレクトした場合は、単純なページの遷移の動作になります。サーバーからリダイレクトのレスポンスコードが返る、
301, 302リダイレクトの動作とは異なりますので、注意してください。
document.location.href
window.location.href()
を利用します。document.location.href
でのページ切り替えについてはこちらの記事も参照して下さい。document.location.href = "(遷移先ページのURL)";
window.location.href(遷移先ページのURL);
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<script type="text/javascript">
document.location.href = "https://www.ipentec.com";
</script>
</head>
<body>
<p>転送ページです。</p>
</body>
</html>
document.location.href = "https://www.ipentec.com";
により、https://www.ipentec.com のページに転送されます。