さて、年齢確認のリダイレクトがある maconbeercompany.com があります。IE、Chrome、Safari、および Firefox でうまく機能します。唯一の問題は、モバイル デバイスで動作させることができないことです。iPhone または Android の場合、[いいえ] を押さないと年齢確認ページから移動できません。ユーザーが「はい」をクリックして、ビール会社の Web サイトにアクセスできるようにしたいと考えています。以下はコードです。私は何を間違っていますか?
<?php
// This code, including the enclosing ?php tags, will require age verification for this page if included at the beginning of the associated HTML/PHP file.
session_start();
if (!isset($_SESSION['age_verified']) || $_SESSION['age_verified'] != true)
{
// Direct them to the age verification page
$redirect_url = urlencode("http://" . $_SERVER['SERVER_NAME'] . $_SERVER['PHP_SELF'] );
header('Location: http://maconbeercompany.com/age-verification.php?redirect=' . $redirect_url );
}
?>
ご協力いただきありがとうございます!