apache url重写伪静态配置教程
一、apache设置
1)、独立主机用户
apache 基本配置:
首先,确定apache 版本,及是否加载了 mod_rewrite 模块。
apache 1.x 的用户请检查 conf/httpd.conf 中是否存在如下两段代码:
apache 2.x 的用户请检查 conf/httpd.conf 中是否存在如下一段代码:
如果没有安装 mod_rewrite,您可以重新编译 apache,并在原有 configure 的内容中加入 --enable-rewrite=shared
注:如果前面有#,将其去掉。
方法一:通过配置apache配置文件httpd.conf实现url重写
在配置文件(通常就是 conf/httpd.conf)中加入:
注:此时请务必注意,如果网站使用通过虚拟主机来定义,请务必加到虚拟主机配置,即 <virtualhost> 中去,如果加在虚拟主机配置外部将可能无法使用,改好后将 apache 重启。
方法二:通过在根目录中的跨越配置文件.htaccess实现url重写
1.
配置apache支持对 .htaccess 文件的解析
查找:
修改为:
man对allowoverride 的解释:
allowoverride controls what directives may be placed in .htaccess files.
it can be "all", "none", or any combination of the keywords:
options fileinfo authconfig limit
就是说,将none改为all,.htaccess文件才能被支持!
2. 创建.htaccess文件win32 系统下,无法直接建立 .htaccess 文件,您可以从其他系统中拷贝一份,或者在 discuz.net 技术支持栏目中下载此文件。(附件中可下载)
3. 编辑.htaccess文件
# 将 rewriteengine 模式打开
rewriteengine on
# .htaccess文件路径,如果在系统跟目录则为rewritebase /,如果在根目录下的其他文件夹,如在根目录下的test文件夹,则为rewritebase /test,此处将.htaccess放在根目录下。
rewritebase /discuz
# rewrite 系统规则请勿修改
rewriterule ^archiver/((fid|tid)-[w-]+.html)$ archiver/index.php?$1
rewriterule ^forum-([0-9]+)-([0-9]+).html$ forumdisplay.php?fid=$1&page=$2
rewriterule ^thread-([0-9]+)-([0-9]+)-([0-9]+).html$ viewthread.php?tid=$1&extra=page%3d$3&page=$2
rewriterule ^space-(username|uid)-(.+).html$ space.php?$1=$2
rewriterule ^tag-(.+).html$ tag.php?name=$1
2)、租用空间用户(多是虚拟主机用户)
1. 首先咨询您的空间服务商,空间是否支持 rewrite 以及是否支持对站点目录中 .htaccess 的文件解析,否则即便按照下面的方法设置好了,也无法使用。
2. 创建.htaccess文件win32 系统下,无法直接建立 .htaccess 文件,您可以从其他系统中拷贝一份,或者在 discuz.net 技术支持栏目中下载此文件。
3. 编辑.htaccess文件
# 将 rewriteengine 模式打开
rewriteengine on
# .htaccess文件路径,如果在系统跟目录则为rewritebase /,如果在根目录下的其他文件夹,如在根目录下的test文件夹,则为rewritebase /test,此处将.htaccess放在根目录下。
rewritebase /discuz
# rewrite 系统规则请勿修改
rewriterule ^archiver/((fid|tid)-[w-]+.html)$ archiver/index.php?$1
rewriterule ^forum-([0-9]+)-([0-9]+).html$ forumdisplay.php?fid=$1&page=$2
rewriterule ^thread-([0-9]+)-([0-9]+)-([0-9]+).html$ viewthread.php?tid=$1&extra=page%3d$3&page=$2
rewriterule ^space-(username|uid)-(.+).html$ space.php?$1=$2
rewriterule ^tag-(.+).html$ tag.php?name=$1
二.rewrite 规则
以上无论是在apache中设置:
还在是文件.htaccess中添加:
# 将 rewriteengine 模式打开
rewriteengine on
# .htaccess文件路径,如果在系统跟目录则为rewritebase /,如果在根目录下的其他文件夹,如在根目录下的test文件夹,则为rewritebase /test,此处将.htaccess放在根目录下。
rewritebase /discuz
# rewrite 系统规则请勿修改
rewriterule ^archiver/((fid|tid)-[w-]+.html)$ archiver/index.php?$1
rewriterule ^forum-([0-9]+)-([0-9]+).html$ forumdisplay.php?fid=$1&page=$2
rewriterule ^thread-([0-9]+)-([0-9]+)-([0-9]+).html$ viewthread.php?tid=$1&extra=page%3d$3&page=$2
rewriterule ^space-(username|uid)-(.+).html$ space.php?$1=$2
rewriterule ^tag-(.+).html$ tag.php?name=$1
其中都指明了url重写规则。
请看:rewriterule ^forum-([0-9]+)-([0-9]+).html$ forumdisplay.php?fid=$1&page=$2
url为forumdisplay.php?fid=$1&page=$2可以写成forum-([0-9]+)-([0-9]+).html这种模式。
如:访问http://localhost/ forumdisplay.php?fid=1&page=2与访问http://localhost/ forum-1-2.html的效果是一样的!
注:这些规则是可以自己写正则表达式随意更改的。根据自己需要的格式。来定制url重写规则。