存档

文章标签 ‘Apache rewrite 规则’

Apache2.x的rewrite模块规则设置

2009年1月28日 没有评论

Apache2.x的rewrite模块规则设置

2009年01月28日 星期三 19:32

我的论坛是Discuz,为了能够使用“URL 静态化”功能,需要在服务器设置rewrite规则。

首先检查Apache中的 conf/httpd.conf 中是否存在如下一段代码:
LoadModule rewrite_module     modules/mod_rewrite.so
如果该段前面有“#”,则将其去掉。
如果存在,那么在配置文件(通常就是 conf/httpd.conf)中加入如下代码。
<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>
然后重新启动Apache就可以了。

阅读全文…