2014-04-19 13:22:01
来 源
kejihao
Apache
本文介绍Apache服务器配置伪静态的详细过程,希望对于初学Apache服务器相关的朋友有帮助,更多Apache安装、配置、报错处理等资源请本站内搜索。
dz论坛目录下.htaccess文件内容: 

# 将 RewriteEngine 模式打开

RewriteEngine On

# 修改以下语句中的 /bbs 为你的论坛目录地址,如果程序放在根目录中,请将 /bbs 修改为 /

RewriteBase /bbs

# 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

配置Apache;

1、修改Apache 的配置文件 httpd.conf 。将#LoadModule rewrite_module modules/mod_rewrite前面的#去掉

2、在 httpd.conf中添加:

<IfModule mod_rewrite.c>

RewriteEngine On

#...

</IfModule>

3、保存httpd.conf并重启Apache

声明: 此文观点不代表本站立场;转载须要保留原文链接;版权疑问请联系我们。