Файл: o5on.ru/index.php
Строк: 31
<?php
/*
include './inc/config.inc.php';
include './inc/wap_tags.inc.php';
include './inc/functions.inc.php';
*/
if(isset($_SERVER['HTTP_ACCEPT'])&& false!==strpos($_SERVER['HTTP_ACCEPT'],'xhtml+xml'))
{
$wapver=2;
}else{
$wapver=1;
}
if(
eregi('windows', $_SERVER["HTTP_USER_AGENT"]) ||
eregi('linux', $_SERVER["HTTP_USER_AGENT"]) ||
eregi('bsd', $_SERVER["HTTP_USER_AGENT"]) ||
eregi('x11', $_SERVER["HTTP_USER_AGENT"]) ||
eregi('unix', $_SERVER["HTTP_USER_AGENT"]) ||
eregi('macos', $_SERVER["HTTP_USER_AGENT"]) ||
eregi('msnbot', $_SERVER["HTTP_USER_AGENT"]) ||
eregi('Googlebot', $_SERVER["HTTP_USER_AGENT"]) ||
eregi('Yahoo', $_SERVER["HTTP_USER_AGENT"]) ||
eregi('macintosh', $_SERVER["HTTP_USER_AGENT"])
) $wapver=3;
if($wapver == 1) {
header("Content-type: text/vnd.wap.wml; charset=utf-8");
header("Cache-Control: no-cache, must-relative");
header("Location: http://o5on.ru/wml?uid=".$_GET["uid"]."");
exit;
}
if($wapver == 2) header("Location: http://o5on.ru/xhtml?uid=".$_GET["uid"]."");
if($wapver == 3) header("Location: http://o5on.ru/html?uid=".$_GET["uid"]."");
if(empty($wapver)) header("Location: http://o5on.ru/html?uid=".$_GET["uid"]."");
?>