MicroLPS


A personal website

Search

Site friends

Investworkflow.com 茶马股道 
PMP exam guilde referece 
PMI  IBM SAP

Catalog categories

UML [1]
Web technology and tools [13]
Javascript HTML XML CSS etc.
Lotus Domino [0]

Login form

Statistics


Total online: 1
Guests: 1
Users: 0

Our poll

Rate my site
Total of answers: 6
Friday, 2024-04-19, 3:22 PM
Welcome Guest
Main | Registration | Login | RSS

Publisher

Main » Articles » Software/Web Design and Development » Web technology and tools

DEDE伪静态规则、目前最全面的DEDE静态规则


 




dedecms(织梦)完美实现伪静态的方法
测试版本: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

Source:
Category: Web technology and tools | Added by: microlps (2012-11-06)
Views: 1517 | Rating: 0.0/0 |
Total comments: 0

Only registered users can add comments.
[ Registration | Login ]