设为首页收藏本站

郑州科技市场

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 2162|回复: 0
打印 上一主题 下一主题

DEDE伪静态前的一些基础设置

[复制链接]
跳转到指定楼层
楼主
发表于 2011-6-21 00:04:46 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
DEDE伪静态前的一些基础设置,郑州IT为大家整理.
1、服务器支持
2、后台开启伪静态:dedecms后台-系统-系统基本参数-核心设置-是否使用伪静态,选是。
3、设置栏目使用动态浏览:可以手动一个一个的设置,也可以使用下边的SQL命令,这样比较快,你可以收藏这个页面,以后方便查找。
dedecms后台-SQL命令行工具,执行以下语句
将所有栏目设置为使用动态页:update dede_arctype set isdefault=-1
4、设置文章使用动态浏览,使用下边的SQL命令,后边的-1是动态,1是静态,
将所有文档设置为仅动态浏览:update dede_archives set ismake=-1
5、改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地址会长一点。这个是文章的。
6、打开include/arc.listview.class.php
找到
$plist = str_replace(‘.php?tid=’, ‘-’, $plist);
(大约在第964行)
在其前面面添加一行
$plist = str_replace(‘plus/list’, ‘list’, $plist);
7、设置规则
win主机的规则设置
[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


linux平台.htaccess规则
RewriteEngine On
RewriteRule ^list/down-([0-9]+)-1.html$ /plus/list.php?tid=$1
RewriteRule ^list/down-([0-9]+)-([0-9]+)-([0-9]+).html$ /plus/list.php?tid=$1&totalresult=$2&PageNo=$3
RewriteRule ^game/([0-9]+).html /plus/view.php?arcID=$1
RewriteRule ^game/([0-9]+)-([0-9]+).html$ /plus/view.php?aid=$1&pageno=$2
RewriteRule ^xiaoyouxi/$ /plus/list.php?tid=9
RewriteRule ^(.*)/index.html $1/index.php
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 支持支持 反对反对
回复

使用道具 举报

*滑动验证:
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|小黑屋|手机版|郑州二手手机|郑州二手电脑|郑州二手笔记本|郑州科技市场 ( 豫ICP备11013749号  

GMT+8, 2025-1-22 20:56 , Processed in 0.192274 second(s), 21 queries .

Powered by Discuz! X3.2

© 2001-2016 Comsenz Inc.

快速回复 返回顶部 返回列表