お問い合わせフォームを送信した後、ウェブサイトをホームページにリダイレクトして、ありがとうページに移動しようとしています。ありがとうページの後にリダイレクトする以外は、うまく機能しています。ありがとうページを削除すると機能します。行の後に of ステートメントが必要であり、次にヘッダー (www.google.com) 型のものが必要であることはわかっていますが、if ステートメントに何を入力すればよいかわかりません。
お問い合わせフォームのファイルを下のドロップボックス リンクにアップロードしました。前もって感謝します。
https://www.dropbox.com/sh/2zrci8b04989u3d/gEc3u6rPK4
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
<title>Thank you!</title>
<link rel="STYLESHEET" type="text/css" href="contact.css">
</head>
<body>
<script>
window.onload=function() {
setTimeout(function() {
location.replace("index.php");
},3000); // wait 3 seconds
}
</script>
<h2>Thank you...</h2>
<a href="index.php">click here if you are not redirected in a few seconds</a>
</body>
</html>