我们在使用织梦伪静态的时候,发现织梦的后台是可以开启伪静态功能的,但仅仅是文章页的伪静态会被开启,栏目页的链接依然是动态的。那么如果要想让栏目页也使用伪静态我们需要如何设置呢?
本文织梦模板网旧介绍下如何开启栏目页伪静态的方法。
首先,需要给虚拟主机添加上伪静态规则,然后再去织梦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";
新闻热点
疑难解答