PHP群:95885625 Hbuilder+MUI群:81989597 站长QQ:634381967
    您现在的位置: 首页 > CMS教程 > dedecms教程 > 正文

    Dedecms完美实现伪静态的方法

    作者:admin来源:B5教程网浏览:时间:2020-09-30 00:07:50我要评论
    导读:织梦系统如何实现伪静态,织梦本身没有带伪静态方法,今天分享一个实现织梦伪静态方法,需要的朋友可以参考一下。记得收藏哦!测试版本:De...
    织梦系统如何实现伪静态,织梦本身没有带伪静态方法,今天分享一个实现织梦伪静态方法,需要的朋友可以参考一下。记得收藏哦!
    测试版本:Dedecms V5.6版本 

    测试平台:Windows 7 
    测试环境:IIS 7.5 
    成功。其他条件下大同小异。 
    需要的条件: 
    1、服务器必须支持URL重写。 
    2、后台开启伪静态。 
    3、栏目设置使用动态。 
    4、添加文档时选择使用动态浏览。 
    5、修改php文件include/channelunit.func.php。 
    6、修改include/arc.listview.class.php。 
    7、编写rewrite规则。 
    操作步骤: 
    1、加载Rewrite模块(过程略)。 
    2、dedecms后台-系统-系统基本参数-核心设置-是否使用伪静态,选“是”。 
    3、把栏目和文档设置成为动态浏览。可以手动,用sql语句更快。 
    dedecms后台-SQL命令行工具,执行以下语句 
    将所有文档设置为“仅动态浏览”:update dede_archives set ismake=-1 
    将所有栏目设置为“使用动态页”:update dede_arctype set isdefault=-1 
    改成1就是静态。动态转换为静态后需要重新生成HTML。 
    添加栏目和文章默认为动态的一劳永逸的方法: 
    4、修改php文件include/channelunit.func.php 
    查找 
    return $GLOBALS["cfg_plus_dir"].”/view-”.$aid.’-1.html’; 
    修改为 
    return “/view-”.$aid.’-1.html’; 
    查找 
    return $GLOBALS['cfg_phpurl'].”/view.php?aid=$aid”; 
    修改为 
    return “/view.php?aid=$aid”; 
    其实页可以不修改,就是URL地址会长一点。这个是文章页的。 
    查找 
    $reurl = $GLOBALS['cfg_phpurl'].”/list.php?tid=”.$typeid; 
    修改为 
    $reurl = “/list-”.$typeid.”.html”; 
    这个必须修改,是栏目页的。 
    其实不修改也可以,但是URL地址会长一点。这个是文章的。 
    5、打开include/arc.listview.class.php 
    找到 
    $plist = str_replace(‘.php?tid=’, ‘-’, $plist); 
    (大约在第964行) 
    在其前面面添加一行 
    $plist = str_replace(‘plus/list’, ‘list’, $plist); 
    这个是列表页分页rewrite的url格式的。 
    默认是http://www.xxx.com/plus/list-1-2-3.html 
    现在是http://www.xxx.com/list-1-2-3.html 
    6、 设置重写规则,在httpd.ini里面写上: 
    [ISAPI_Rewrite] 
    # 缓存3600秒 = 1 小时(hour) 
    CacheClockRate 3600 
    RepeatLimit 32 
    #dedecms Rewrite规则 
    RewriteRule ^(.*)/index\.html$1/index\.php 
    RewriteRule ^(.*)/list-([0-9]+)\.html$1/plus/list\.php\?tid=$2 
    RewriteRule^(.*)/list-([0-9]+)-([0-9]+)-([0-9]+)\.html$1/plus/list\.php\?tid=$2&TotalResult=$3&PageNo=$4 
    RewriteRule^(.*)/view-([0-9]+)-([0-9]+)\.html $1/plus/view\.php\?arcID=$2&pageno=$3 
    7、如果不使用动态首页 
    把rewrite规则中的 
    RewriteRule ^(.*)/index\.html $1/index\.php 
    去掉,或改为 
    RewriteRule ^(.*)/index\.html $1/index\.html 
    否则打开http://www.xxx.com/index.html时会陷入死循环。 
    说明: 
    1、 
    RewriteRule ^view-([0-9]+)-([0-9]+)\.html$/plus/view.php?aid=$1&pageno=$2 
    此为文章分页重写命令。 
    2、如果view替换成自己设置的其他词,则需要把include/arc.archives.class.php文件中的view同时替换掉。 
    3、重写后的URL如下: 
    文章页:http://www.xxx.com/view-1-1.html 
    列表页:http://www.xxx.com/list-1.html 
    如果需要改成如下格式: 
    文章页:http://www.xxx.com/abc/view-1-1.html 
    列表页:http://www.xxx.com/abc/list-1.html 
    include/channelunit.func.php中 
    return $GLOBALS["cfg_plus_dir"].”/view-”.$aid.’-1.html’; 
    改为 return “/abc/view-”.$aid.’-1.html’; 
    return $GLOBALS['cfg_phpurl'].”/view.php?aid=$aid”; 
    改为 return “/abc/view.php?aid=$aid”; 
    $reurl = $GLOBALS['cfg_phpurl'].”/list.php?tid=”.$typeid; 
    改为 $reurl = “/abc/list-”.$typeid.”.html”; 
    重写规则改为: 
    RewriteRule ^(.*)/index\.html $1/index\.php 
    RewriteRule^(.*)/abc/list-([0-9]+)\.html $1/plus/list\.php\?tid=$2 
    RewriteRule^(.*)/abc/list-([0-9]+)-([0-9]+)-([0-9]+)\.html$1/plus/list\.php\?tid=$2&TotalResult=$3&PageNo=$4 
    RewriteRule^(.*)/abc/view-([0-9]+)-([0-9]+)\.html$1/plus/view\.php\?arcID=$2&pageno=$3 

    4、伪静态可能会出现多个url都是指向相同页面,如果看重SEO效果,则可用robots.txt屏蔽多余url。

    转载请注明(B5教程网)原文链接:https://b5.mxunkeji.com/content-102-485-1.html
    相关热词搜索: Dedecms 伪静态