主站www.abc.com 手机站 wap.abc.com
1.安装手机wap浏览 模块
2.根目录创建 wap文件夹 ,将 templets\wap 文件移入 根目录下的 wap, 如图:
<?php if(isset($_SERVER['HTTP_USER_AGENT'])) { $clientkeywords = array('nokia','sony','ericsson','mot','samsung','htc','sgh','lg','sharp','sie-','philips','panasonic','alcatel','lenovo','iphone','ipod','blackberry','meizu','android','netfront', 'symbian','ucweb','windowsce','palm','operamini','operamobi','openwave','nexusone','cldc','midp','wap','mobile'); // 从HTTP_USER_AGENT中查找手机浏览器的关键字 if (preg_match("/(".implode('|',$clientkeywords).")/i",strtolower($_SERVER['HTTP_USER_AGENT']))){ ?> <?php if(isset($_SERVER['HTTP_USER_AGENT'])) { $clientkeywords = array('nokia','sony','ericsson','mot','samsung','htc','sgh','lg','sharp','sie-','philips','panasonic','alcatel','lenovo','iphone','ipod','blackberry','meizu','android','netfront', 'symbian','ucweb','windowsce','palm','operamini','operamobi','openwave','nexusone','cldc','midp','wap','mobile'); // 从HTTP_USER_AGENT中查找手机浏览器的关键字 if (preg_match("/(".implode('|',$clientkeywords).")/i",strtolower($_SERVER['HTTP_USER_AGENT']))){ ?> window.location.href='http://wap.abc.com'; <?PHP } } ?>
8.wap站添加 搜索
修改 wap.php
else if($action=='search') { $needCode = 'UTF-8'; if(empty($keyword)) exit('Error!'); require_once(dirname(__FILE__)."/../include/datalistcp.class.php"); $varlist = "cfg_webname,cfg_templeturl"; ConvertCharset($varlist); $dlist = new DataListCP(); $dlist->SetTemplet($cfg_templets_dir."/wap/search.wml"); $dlist->pageSize = 10; $dlist->SetParameter("action","search"); $dlist->SetParameter("keyword",$keyword); $dlist->SetSource("Select id,title,pubdate,click From `idea_archives` where title like '%". iconv("UTF-8", "GB2312",$keyword)."%' And arcrank=0 order by id desc"); $dlist->Display(); exit(); }