欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

让Apache支持Rewrite静态页面重写的方法

程序员文章站 2022-06-27 21:19:35
首先确定您使用的 apache 版本,及是否加载了 mod_rewrite 模块。 apache 1.x 的用户请检查 conf/httpd.conf 中是否存在如下两段代...
首先确定您使用的 apache 版本,及是否加载了 mod_rewrite 模块。

apache 1.x 的用户请检查 conf/httpd.conf 中是否存在如下两段代码:

loadmodule rewrite_module libexec/mod_rewrite.so addmodule mod_rewrite.c

apache 2.x 的用户请检查 conf/httpd.conf 中是否存在如下一段代码: loadmodule rewrite_module modules/mod_rewrite.so

如果存在,那么在配置文件(httpd.conf)中加入如下代码。此时请务必注意,如果网站使用通过虚拟主机来定义,请务必加到虚拟主机配置,即 中去,如果加在虚拟主机配置外部将可能无法使用。改好后然后将 apache 重启。

在确认开启 mod_rewrite模块之后,针对虚拟主机用户,还可以通过创建.htaccess文件来达到url重写的目的,首先要再设置的站点目录中开启 allowoverride all(默认为 allowoverride none);

.htaccess文件的内容举例如下 # 将 rewriteengine 模式打开 rewriteengine on # 修改以下语句中的 /dir 为你的站点目录地址,如果程序放在根目录中,请将 /dir 修改为 / rewritebase /dir # 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 将创建好的.htaccess文件放在相应的目录下,此时便可以支持url静态地址,方便搜索引擎的抓取