织梦dedecms 5.5 伪静态设置方法
首先我们给虚拟主机加上伪静态规则,Apache和IIS的详细设置如下,虚拟主机是否支持伪静态,请咨询你的虚拟主机提供商。
如果是Apache的服务器,就在.htaccess里面写上
代码:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule index.html /index.php
RewriteRule plus/list-([0-9]+).html$ /plus/list.php?tid=$1
RewriteRule plus/view-([0-9]+)-([0-9]+).html$ /plus/view.php?arcID=$1&pageno=$3
RewriteRule plus/list-([0-9]+)-([0-9]+)-([0-9]+).html$ /plus/list.php?tid=$1&totalresult=$2&PageNo=$3
</IfModule>
IIS的服务器,在httpd.ini里面写上,前提是要服务器安装过ISAPI Rewrite
代码:
[ISAPI_Rewrite]
# 缓存3600秒 = 1 小时(hour)
CacheClockRate 3600
RepeatLimit 32
RewriteRule ^(.*)/index.html $1/index.php
RewriteRule ^(.*)/plus/list-([0-9]+).html $1/plus/list.php?tid=$2
RewriteRule ^(.*)/plus/list-([0-9]+)-([0-9]+)-([0-9]+).html $1/plus/list.php?tid=$2&TotalResult=$3&PageNo=$4
RewriteRule ^(.*)/plus/view-([0-9]+)-([0-9]+).html $1/plus/view.php?arcID=$2&pageno=$3
然后我们修改dedecms的程序,打开includechannelunit.func.php
查找
代码:
$reurl = $GLOBALS[‘cfg_phpurl’].”/list.php?tid=”.$typeid;
替换为
代码:
$reurl = $GLOBALS[‘cfg_phpurl’].”/list-“.$typeid.”.html”;
以上修改适用于dedecms 5.5版,其他版本可能稍微有些区别。
1 本站文章均为原创,除非另有说明,转载请附上出处链接,谢谢。
2 本站提供的资源(插件或主题)均为网上搜集,如有涉及或侵害到您的版权请立即通知我们。
3 本站所有下载文件,仅用作学习研究使用,请下载后24小时内删除,支持正版,勿用作商业用途。
4 因代码可变性,不保证兼容所有浏览器、不保证兼容所有版本的系统、不保证兼容您安装的其他插件。
5 本站保证所提供资源(插件或主题)的完整性,但不含授权许可、帮助文档、XML文件、PSD、后续升级等。
6 使用该资源(插件或主题)需要用户有一定代码基础知识!由本站提供的资源对您的网站或计算机造成严重后果的本站概不负责。
7 因不同CMS系统不定期升级,导致有时可能会遇到部分源码不兼容,介意勿使用,谢谢!
8 本站资源售价只是赞助和汉化辛苦费,收取费用仅维持本站的日常运营所需。
9 如果喜欢本站资源,欢迎捐助本站开通会员享受优惠折扣,谢谢支持!
10 如果资源地址失效,请在相应资源页面下留言,我们会尽快修复下载地址。
暂无评论内容