织梦DEDECMS gbk站点mip改造方案

第一部分:模板修改

1、js部分:删除或使用现有组件替换


2、调用百度mip文件:

head里加<link rel="stylesheet" type="text/css"href="https://mipcache.bdstatic.com/static/mipmain-v1.1.1.css">

body里加<script src=http://www.dede58.com/"https:/mipcache.bdstatic.com/static/mipmain-v1.1.2.js"></script>


3、head里加<link rel="canonical"href="{dede:global.cfg_basehost/}{dede:field name='arcurl'/}" >,通过dedecms标签直接调用当前页url。


4、外部通用css文件:建议将css文件中的样式代码嵌入<style mip-custom>…</style>中,另存为模板文件(如css.htm),用{dede:includefilename="css.htm"/}替换相关模板中的<link rel="stylesheet" type="text/css"href="…" />。

模板中的内联css可人工进行查找替换,合并至<stylemip-custom>中。(虽在下面代码中可以自动进行处理,但从静态文件生成性能角度考虑,还是建议人工先将模板中的内联样式一次性整改好。)


注:以上操作大多可通过批量查找替换来完成,看似需要修改很多,但实际工作量并不大。



第二部分:程序文件修改

 

· 静态生成移动站:


找到 /include/dedetag.class.php文件中解析模板输出为文件的函数:

    function SaveTo($filename)

    {

        $fp = @fopen($filename,"w")or die("DedeTag Engine Create File False");

        fwrite($fp,$this->GetResult());

        fclose($fp);

}


替换为(部分代码可根据实际情况进行改动):


     //路径转换函数文件。$content:代码源,$feed_url:首页,$f_url:相对路径的目录部分

     function relative_to_absolute($content,$protocol, $domain, $f_url) {  

                   //根目录相对路径(如href="/a/b.html")转换

                   $new_content =preg_replace('/href\s*\=\s*([\'"])\s*\//','href=\\1'.$protocol.$domain.'/', $content);

                   $new_content =preg_replace('/src\s*\=\s*([\'"])\s*\//', 'src=\\1'.$protocol.$domain.'/',$new_content);

                   //当前页相对路径(如href="a/b.html")转换

                   $new_content =preg_replace('/href\s*\=\s*([\'"])(?!(http|https):\/\/)/','href=\\1'.$protocol.$domain.$f_url,$new_content);

                   $new_content =preg_replace('/src\s*\=\s*([\'"])(?!(http|https):\/\/)/','src=\\1'.$protocol.$domain.$f_url, $new_content);

                   return $new_content;

     }


    function SaveTo($filename)

    {                 

        $fp=@fopen($filename,"w") ordie("DedeTag Engine Create File False");

                   if(substr($_SERVER['PHP_SELF'],-6)=='_m.php'||substr($filename,-13)=='/m/index.html'){ //跳转适配站识别是否为移动端生成,不影响pc端的gbk编码。移动端为独立站点需去掉此判断条件。

                            $f_url=explode('域名.com/m',dirname($filename));//分割路径,获取当前页相对路径的目录部分

                            //如dirname($filename)得到的本地绝对路径为D:/wwwroot/www.域名.com/m/yygk/xwzx,用网站目录“域名.com/m”作为标识分割路径,得到目录部分“/yygk/xwzx”。

                            $html=$this->GetResult();

                            $html=$this->relative_to_absolute($html,'','m.域名.com',$f_url[1].'/');//相对路径转换绝对路径

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/da877690dea5a0e552e8a56a9ab08d90.html