当前位置: 首页 > 站长资讯 > 正文页面

Dedecms完美实现伪静态的方法

织梦系统如何实现伪静态,织梦本身没有带伪静态方法,今天分享一个实现织梦伪静态方法,需要的朋友可以参考一下。记得收藏哦!qfw网站目录_网站网址收录与提交入口

测试版本:Dedecms V5.6版本qfw网站目录_网站网址收录与提交入口

测试平台:Windows 7qfw网站目录_网站网址收录与提交入口

测试环境:IIS 7.5qfw网站目录_网站网址收录与提交入口

成功。其他条件下大同小异。qfw网站目录_网站网址收录与提交入口

需要的条件:qfw网站目录_网站网址收录与提交入口

1、服务器必须支持URL重写。qfw网站目录_网站网址收录与提交入口

2、后台开启伪静态。qfw网站目录_网站网址收录与提交入口

3、栏目设置使用动态。qfw网站目录_网站网址收录与提交入口

4、添加文档时选择使用动态浏览。qfw网站目录_网站网址收录与提交入口

5、修改php文件include/channelunit.func.php。qfw网站目录_网站网址收录与提交入口

6、修改include/arc.listview.class.php。qfw网站目录_网站网址收录与提交入口

7、编写rewrite规则。qfw网站目录_网站网址收录与提交入口

操作步骤:qfw网站目录_网站网址收录与提交入口

1、加载Rewrite模块(过程略)。qfw网站目录_网站网址收录与提交入口

2、dedecms后台-系统-系统基本参数-核心设置-是否使用伪静态,选“是”。qfw网站目录_网站网址收录与提交入口

3、把栏目和文档设置成为动态浏览。可以手动,用sql语句更快。qfw网站目录_网站网址收录与提交入口

dedecms后台-SQL命令行工具,执行以下语句qfw网站目录_网站网址收录与提交入口

将所有文档设置为“仅动态浏览”:update dede_archives set ismake=-1qfw网站目录_网站网址收录与提交入口

将所有栏目设置为“使用动态页”:update dede_arctype set isdefault=-1qfw网站目录_网站网址收录与提交入口

改成1就是静态。动态转换为静态后需要重新生成HTML。qfw网站目录_网站网址收录与提交入口
qfw网站目录_网站网址收录与提交入口
添加栏目和文章默认为动态的一劳永逸的方法:qfw网站目录_网站网址收录与提交入口

4、修改php文件include/channelunit.func.phpqfw网站目录_网站网址收录与提交入口

查找qfw网站目录_网站网址收录与提交入口

return $GLOBALS["cfg_plus_dir"].”/view-”.$aid.’-1.html’;qfw网站目录_网站网址收录与提交入口

修改为qfw网站目录_网站网址收录与提交入口

return “/view-”.$aid.’-1.html’;qfw网站目录_网站网址收录与提交入口

查找qfw网站目录_网站网址收录与提交入口

return $GLOBALS['cfg_phpurl'].”/view.php?aid=$aid”;qfw网站目录_网站网址收录与提交入口

修改为qfw网站目录_网站网址收录与提交入口

return “/view.php?aid=$aid”;qfw网站目录_网站网址收录与提交入口

其实页可以不修改,就是URL地址会长一点。这个是文章页的。qfw网站目录_网站网址收录与提交入口

查找qfw网站目录_网站网址收录与提交入口

$reurl = $GLOBALS['cfg_phpurl'].”/list.php?tid=”.$typeid; qfw网站目录_网站网址收录与提交入口
修改为qfw网站目录_网站网址收录与提交入口

$reurl = “/list-”.$typeid.”.html”;qfw网站目录_网站网址收录与提交入口

这个必须修改,是栏目页的。qfw网站目录_网站网址收录与提交入口

其实不修改也可以,但是URL地址会长一点。这个是文章的。qfw网站目录_网站网址收录与提交入口

5、打开include/arc.listview.class.phpqfw网站目录_网站网址收录与提交入口

找到qfw网站目录_网站网址收录与提交入口

$plist = str_replace(‘.php?tid=’, ‘-’, $plist);qfw网站目录_网站网址收录与提交入口

(大约在第964行)qfw网站目录_网站网址收录与提交入口

在其前面面添加一行qfw网站目录_网站网址收录与提交入口

$plist = str_replace(‘plus/list’, ‘list’, $plist);qfw网站目录_网站网址收录与提交入口

这个是列表页分页rewrite的url格式的。qfw网站目录_网站网址收录与提交入口

默认是http://www.xxx.com/plus/list-1-2-3.htmlqfw网站目录_网站网址收录与提交入口

现在是http://www.xxx.com/list-1-2-3.htmlqfw网站目录_网站网址收录与提交入口

6、 设置重写规则,在httpd.ini里面写上:qfw网站目录_网站网址收录与提交入口

[ISAPI_Rewrite]qfw网站目录_网站网址收录与提交入口

# 缓存3600秒 = 1 小时(hour)qfw网站目录_网站网址收录与提交入口

CacheClockRate 3600qfw网站目录_网站网址收录与提交入口

RepeatLimit 32qfw网站目录_网站网址收录与提交入口

#dedecms Rewrite规则qfw网站目录_网站网址收录与提交入口

RewriteRule ^(.*)/index/.html$1/index/.phpqfw网站目录_网站网址收录与提交入口

RewriteRule ^(.*)/list-([0-9]+)/.html$1/plus/list/.php/?tid=$2qfw网站目录_网站网址收录与提交入口

RewriteRule^(.*)/list-([0-9]+)-([0-9]+)-([0-9]+)/.html$1/plus/list/.php/?tid=$2&TotalResult=$3&PageNo=$4 qfw网站目录_网站网址收录与提交入口
RewriteRule^(.*)/view-([0-9]+)-([0-9]+)/.html $1/plus/view/.php/?arcID=$2&pageno=$3qfw网站目录_网站网址收录与提交入口

7、如果不使用动态首页qfw网站目录_网站网址收录与提交入口

把rewrite规则中的qfw网站目录_网站网址收录与提交入口

RewriteRule ^(.*)/index/.html $1/index/.phpqfw网站目录_网站网址收录与提交入口

去掉,或改为qfw网站目录_网站网址收录与提交入口

RewriteRule ^(.*)/index/.html $1/index/.htmlqfw网站目录_网站网址收录与提交入口

否则打开http://www.xxx.com/index.html时会陷入死循环。qfw网站目录_网站网址收录与提交入口
qfw网站目录_网站网址收录与提交入口
说明:qfw网站目录_网站网址收录与提交入口
qfw网站目录_网站网址收录与提交入口
1、 RewriteRule ^view-([0-9]+)-([0-9]+)/.html$/plus/view.php?aid=$1&pageno=$2qfw网站目录_网站网址收录与提交入口

此为文章分页重写命令。qfw网站目录_网站网址收录与提交入口

2、如果view替换成自己设置的其他词,则需要把include/arc.archives.class.php文件中的view同时替换掉。qfw网站目录_网站网址收录与提交入口

3、重写后的URL如下:qfw网站目录_网站网址收录与提交入口

文章页:http://www.xxx.com/view-1-1.htmlqfw网站目录_网站网址收录与提交入口

列表页:http://www.xxx.com/list-1.htmlqfw网站目录_网站网址收录与提交入口

如果需要改成如下格式:qfw网站目录_网站网址收录与提交入口

文章页:http://www.xxx.com/abc/view-1-1.htmlqfw网站目录_网站网址收录与提交入口

列表页:http://www.xxx.com/abc/list-1.htmlqfw网站目录_网站网址收录与提交入口

include/channelunit.func.php中qfw网站目录_网站网址收录与提交入口

return $GLOBALS["cfg_plus_dir"].”/view-”.$aid.’-1.html’; qfw网站目录_网站网址收录与提交入口
改为 return “/abc/view-”.$aid.’-1.html’;qfw网站目录_网站网址收录与提交入口

return $GLOBALS['cfg_phpurl'].”/view.php?aid=$aid”; qfw网站目录_网站网址收录与提交入口
改为 return “/abc/view.php?aid=$aid”;qfw网站目录_网站网址收录与提交入口

$reurl = $GLOBALS['cfg_phpurl'].”/list.php?tid=”.$typeid; qfw网站目录_网站网址收录与提交入口
改为 $reurl = “/abc/list-”.$typeid.”.html”;qfw网站目录_网站网址收录与提交入口

重写规则改为:qfw网站目录_网站网址收录与提交入口
qfw网站目录_网站网址收录与提交入口
RewriteRule ^(.*)/index/.html $1/index/.php qfw网站目录_网站网址收录与提交入口
RewriteRule^(.*)/abc/list-([0-9]+)/.html $1/plus/list/.php/?tid=$2 qfw网站目录_网站网址收录与提交入口
RewriteRule^(.*)/abc/list-([0-9]+)-([0-9]+)-([0-9]+)/.html$1/plus/list/.php/?tid=$2&TotalResult=$3&PageNo=$4 qfw网站目录_网站网址收录与提交入口
RewriteRule^(.*)/abc/view-([0-9]+)-([0-9]+)/.html$1/plus/view/.php/?arcID=$2&pageno=$3qfw网站目录_网站网址收录与提交入口

4、伪静态可能会出现多个url都是指向相同页面,如果看重SEO效果,则可用robots.txt屏蔽多余url。qfw网站目录_网站网址收录与提交入口

 qfw网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章