私は自分のアプリケーションのモバイルバージョンを作成しています。これは設定ページ(mysettings.php)の一部です。
if(!isset($_SESSION['access_token']))
{
echo("<script type='text/javascript'> window.top.location.href='http://www.example.com/mobile/login.php'</script>");
}
access_tokenが設定されていない場合は、login.phpにリダイレクトする必要がありますが、なぜ機能しないのか理解できません。
レンダリングされたソースコードでは、リダイレクトが発生していないため、次のように表示されます(リダイレクトコードが存在します)
<script type='text/javascript'> window.top.location='http://www.example.com/mobile/login.php'</script>
<!DOCTYPE html>
<html>
<head>...
.
.
.</html>
Chromeを使用しています。これは、mysettings.phpページにログインしているソースコードです。
<?php
session_start();
$logins=0;
?>
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>Settings</h1>
</div><!-- /header -->
<div data-role="content">
<div class="ui-grid-a">
<div class="ui-block-a"><a href="mysettings.php" data-role="button" data-mini="true">Settings</a> </div>
<div class="ui-block-b"><a href="my.php" data-role="button" data-mini="true">My Pictures</a> </div>
</div>
</div><!-- /content -->
<div data-role="footer">
</div><!-- /footer -->
</div><!-- /page -->
</body>
</html>