头像

discuzx专题目录化伪静态设置方法

2019-12-13 23:39:55 来源:E819   浏览(71)   评论 ( 0 )   

步骤一:
进入网站后台-全局-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;----------------------------------------------------------------
声明:转载请注明来源(E819)并保留原文链接:http://www.e819.com/jishu-9367.html
评论0

后面还有条评论,点击查看>>