source: branches/feature-module-update/html/mobile/redirect.php @ 15080

Revision 15080, 482 bytes checked in by nanasess, 17 years ago (diff)

svn properties 設定

  • svn:mime-type - application/x-httpd-php; charset=UTF-8
  • svn:keywords - Id
  • Property svn:keywords set to Id
  • Property svn:mime-type set to application/x-httpd-php; charset=UTF-8
Line 
1<?php
2/**
3 *
4 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
5 *
6 * http://www.lockon.co.jp/
7 *
8 *
9 * モバイルサイト/空メールの返信からの遷移
10 */
11
12define('SKIP_MOBILE_INIT', true);
13require_once 'require.php';
14
15if (isset($_GET['token'])) {
16    $next_url = gfFinishKaraMail($_GET['token']);
17}
18
19if (isset($next_url) && $next_url !== false) {
20    header("Location: $next_url");
21} else {
22    header('Location: ' . MOBILE_SITE_URL);
23}
24?>
Note: See TracBrowser for help on using the repository browser.