PHP でのリダイレクト:
header("Location: mask.php")
IE 9、google chrome、firefox では動作しますが、IE 8 では動作しません。
どうすればこれを修正できますか?
PS:header("Location: http://......")
役に立ちません。
PHP でのリダイレクト:
header("Location: mask.php")
IE 9、google chrome、firefox では動作しますが、IE 8 では動作しません。
どうすればこれを修正できますか?
PS:header("Location: http://......")
役に立ちません。
;
最後に必要なスクリプトが不足しているexit
ため、スクリプトはもう実行されません。
<?php
header("Location: mask.php");
exit; // with die at the end
?>
テストするにIE
は、どこかにリダイレクトするサンプル ページを作成し、NetRendererでテストします。
後に追加die();
します。
お気に入り:
header("Location: mask.php");
die();