Home >php教程 >php手册 >dede全站URL静态化改造[070414更正]

dede全站URL静态化改造[070414更正]

WBOY
WBOYOriginal
2016-06-13 12:31:351120browse

1、将include复制到网站中的include目录。
2、修改数据库
将所有文档设置为“仅动态”,可以进入数据库管理中,执行下面命令:
update dede_archives set ismake=-1
并将ismake的默认值设置为 -1即动态。
将所有栏目设置为“使用动态页”,可以进入数据库管理中,执行下面命令:
update dede_arctype set isdefault=-1
并将isdefault的默认值设置为 -1即动态。
3、加入服务器重写规则,对于Apache2,可以在httpd.conf文件最后加上以下几条:
LoadModule rewrite_module   modules/mod_rewrite.so

RewriteRule ^(.*)/view-([0-9]+)\.html$ $1/plus/view.php?aid=$2
RewriteRule ^(.*)/view-([0-9]+)-([0-9]+)\.html$ $1/plus/view.php?aid=$2&pageno=$3
RewriteRule ^(.*)/list-([0-9]+)\.html$ $1/plus/list.php?tid=$2
RewriteRule ^(.*)/list-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/plus/list.php?typeid=$2&TotalResult=$3&PageNo=$4

4、调整完毕后
到DEDE后台管理程序中,更新一下首页,完成。
经改造后的站:方舟系统站 http://www.fz49.com

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:mysql 搜索之简单应用Next article:MySQL授权问题总结