您现在的位置: 首页网站前台技术>正文
discuzx专题目录化伪静态设置方法
2012年01月24日 网站前台技术 暂无评论
 黑客迷之前发布的SEO优化:仿地宝网URL伪静态版块目录化和贴子目录化 ,受到广大网友的关注和支持。现在有网友问我们的专题是如何实现目录化的,今天特在此向大家公布方法:

新手知识:如何为 Discuz! X2 配置伪静态 

步骤一:
进入网站后台-全局-SEO设置-URL静态化
在“门户专题页”格式里填写:
special/{name}/

步骤二:
根据不同的主机选择相应的方法
Apache Web Server(独立主机用户)
-----------------------------------------------------------------
打开.htaccess文件
加上:
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^(.*)/special/(.+)/$ $1/portal.php?mod=topic&topic=$2&%1
-----------------------------------------------------------------

Apache Web Server(虚拟主机用户)
-----------------------------------------------------------------
打开.htaccess文件
加上:
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^special/(.+)/$ portal.php?mod=topic&topic=$1&%1 [L,NC]
-----------------------------------------------------------------

IIS Web Server(独立主机用户)
-----------------------------------------------------------------
打开Rewrite.dll文件
加上:
RewriteRule ^(.*)/special/(.+)/(\?(.*))*$ $1/portal\.php\?mod=topic&topic=$2&$4 ----------------------------------------------------------------

Nginx Web Server
-----------------------------------------------------------------
rewrite ^([^\.]*)/special/(.+)/$ $1/portal.php?mod=topic&topic=$2 last;
----------------------------------------------------------------

演示地址:http://www.hackerfans.com/special/discuzx/

原文地址:http://www.moke8.com/article-2123-1.html

给我留言