Discuz7.0论坛URL静态化

将URL地址静态化可有利于论坛内容更容易被搜索引擎挖掘,提高被收录的机率,Discuz静态化url也是相当的简单容易的。只需要以下几个步骤即可开通!

1,修改apache的conf/httpd.conf文件,找到以下代码:
LoadModule rewrite_module     modules/mod_rewrite.so    //将前面#号去掉

在文档是最底行加入以下代码:
<IfModule mod_rewrite.c>
	RewriteEngine On
	RewriteRule ^(.*)/archiver/((fid|tid)-[\w\-]+\.html)$ $1/archiver/index.php?$2
	RewriteRule ^(.*)/forum-([0-9]+)-([0-9]+)\.html$ $1/forumdisplay.php?fid=$2&page=$3
	RewriteRule ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/viewthread.php?tid=$2&extra=page\%3D$4&page=$3
	RewriteRule ^(.*)/space-(username|uid)-(.+)\.html$ $1/space.php?$2=$3
	RewriteRule ^(.*)/tag-(.+)\.html$ $1/tag.php?name=$2
    </IfModule>


但这里需要注意的是,如果你的论坛是布署在虚似主机的,则不用作以上的更改,而是将代码复制到你的虚似主机节点下如:
<VirtualHost ...>
   ...
   ServerName bbs.aorta-show.com
   LoadModule rewrite_module     modules/mod_rewrite.so 
   <IfModule mod_rewrite.c>
	RewriteEngine On
	RewriteRule ^(.*)/archiver/((fid|tid)-[\w\-]+\.html)$ $1/archiver/index.php?$2
	RewriteRule ^(.*)/forum-([0-9]+)-([0-9]+)\.html$ $1/forumdisplay.php?fid=$2&page=$3
	RewriteRule ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/viewthread.php?tid=$2&extra=page\%3D$4&page=$3
	RewriteRule ^(.*)/space-(username|uid)-(.+)\.html$ $1/space.php?$2=$3
	RewriteRule ^(.*)/tag-(.+)\.html$ $1/tag.php?name=$2
    </IfModule>
   ...
</VirtualHost>


然后,以admin登录到论坛后台,在 全局 » 优化设置 » 搜索引擎优化里将URL 静态化下的几个复选框全部选中后提交,再刷新页面即可实现URL静态化了。

这里有官方的说明: http://www.discuz.net/usersguide/advanced_urlrewrite.htm

你可能感兴趣的:(thread,html,PHP,搜索引擎,bbs)