用过织梦DEDECMS的朋友都知道,织梦dedecms自带手机端网站搜索页直接跳转到pc站的搜索页面,我们今天需要实现的效果是手机站搜索跳转到手机站搜索页面,那么要怎么实现呢?
找到/plus/search.php 这个文件,搜索如下代码,大概在20行左右
$mid = (isset($mid) && is_numeric($mid)) ? $mid : 0;
在这段代码的下面添加:
$mobile = (isset($mobile) && is_numeric($mobile)) ? $mobile : 0;
if ($mobile==1)
{
define('DEDEMOB', 'Y');
}
if ($mobile==1)
{
define('DEDEMOB', 'Y');
}
如下图:
然后在搜索页的地方form中添加一个隐藏的input,name为mobile,value值为1,如下代码:
<input name="mobile" type="hidden" value="1" />
如下图: