首页 > CMS > 织梦DEDE > 正文

apache IIS服务器下织梦CMS栏目页开启伪静态的方法介绍

2024-07-12 08:49:22
字体:
来源:转载
供稿:网友
这篇文章主要为大家详细介绍了apache IIS服务器下织梦CMS栏目页开启伪静态的方法介绍,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,有需要的朋友可以收藏方便以后借鉴。

     我们在使用织梦伪静态的时候,发现织梦的后台是可以开启伪静态功能的,但仅仅是文章页的伪静态会被开启,栏目页的链接依然是动态的。那么如果要想让栏目页也使用伪静态我们需要如何设置呢?

     本文织梦模板网旧介绍下如何开启栏目页伪静态的方法。
首先,需要给虚拟主机添加上伪静态规则,然后再去织梦dedecms的相关文件中改掉相应的函数。
下面武林网分别给出Apache和IIS的详细设置方法。
Apache的服务器,就在.htaccess中添加:

<IfModule mod_rewrite.c>RewriteEngine OnRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule index.html /index.phpRewriteRule plus/list-([0-9]+).html$ /plus/list.php?tid=$1RewriteRule plus/view-([0-9]+)-([0-9]+).html$ /plus/view.php?arcID=$1&pageno=$3RewriteRule 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 3600RepeatLimit 32RewriteRule ^(.*)/index.html $1/index.phpRewriteRule ^(.*)/plus/list-([0-9]+).html $1/plus/list.php?tid=$2RewriteRule ^(.*)/plus/list-([0-9]+)-([0-9]+)-([0-9]+).html $1/plus/list.php?tid=$2&TotalResult=$3&PageNo=$4RewriteRule ^(.*)/plus/view-([0-9]+)-([0-9]+).html $1/plus/view.php?arcID=$2&pageno=$3

然后我们再来介绍下,如何修改dedecms的程序。

打开include/channel/unit.func.php。
将以下代码:

$reurl = $GLOBALS['cfg_phpurl']."/list.php?tid=".$typeid;

替换为:

$reurl = $GLOBALS['cfg_phpurl']."/list-".$typeid.".html";


以上就是apache IIS服务器下织梦CMS栏目页开启伪静态的方法介绍的全部内容,希望对大家的学习和解决疑问有所帮助,也希望大家多多支持武林网。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表