首页 > 互联网 > Apache2.x的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就可以了。

具体的指令为
RewriteRule 虚拟地址 真实地址
Rewrite规则支持通配符。
例如我们需要对soft.asp?id=这样的地址静态化成html地址时。就可以这样写Rewrite规则。
RewriteRule /soft_(\d+)\.html /soft\.asp\?id=$1
这样所有soft.asp?id=[数字]的文件都被虚拟成为了soft_[数字].html
比如soft.asp?id=3的地址可以通过soft_3.html访问。
那么如果id后面不是数字而是字母呢?比方说soft.asp?id=A
那么这个规则可以这样写
RewriteRule /soft_([A-Z]+)\.html /soft\.asp\?id=$1
参考资料:
Discuz! URL 静态化的使用   http://www.discuz.net/usersguide/advanced_urlrewrite.htm#title

  1. 本文目前尚无任何评论.
  1. 本文目前尚无任何 trackbacks 和 pingbacks.