2つの必須フィールド(電子メールとメッセージ)と2つの必須ではないフィールド(名前と番号)を持つフォームがあります。あなたが必要なフィールドだけを記入するとうまく提出しますが、必須ではないフィールドが提出されると404が生成されます。もしそれが関連していれば私はwordpressを使用しています。投稿時にoccaisionally 404ページを生成する
<form id="question" action="thankyou" method="post">
<p class="question-label">Type your email address here...</p>
<input id="email" name="email" type="text"></input>
<h3>Your Question...</h3>
<textarea id="message" name="message"></textarea>
<input id="submit" name="submit" type="submit" value="GO" />
<p>If you would like us to call you please enter you Name and Contact Number here:</p>
<p class="question-label">Name</p>
<input id="name" name="name" type="text"></input>
<p class="question-label">Contact Number</p>
<input id="number" name="number" type="text"></input>
</form>
空白のページではなく、404であることは間違いありませんか? – pp19dd
はい、このページは404エラーページを生成しています。 – unfrev
for-realsies 404? 404というHTTPヘッダーがありますか?理由は私が尋ねる理由は、それが404ではない - それは空白のページです - それは、すべてのヘッダーが送信される前にフォームプロセッサが何かをエコーすることによってトリガされる可能性があります。アクションを「?」に変更してみてください。の代わりに "#"。 – pp19dd