LAMP 配置apache支持rewrite discuz全静态


让APACHE支持.htaccess了,来看看操作.
打开httpd.conf文件(在那里? APACHE目录的CONF目录里面),用文本编辑器打开后,查找
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>

改为
<Directory />
    Options FollowSymLinks
    AllowOverride All
</Directory>

就可以了




记录一下设置过程,有独立主机需要设置的朋友可以参考下。其实很简单,按照DZ官方的教程来就可以。
(本记录只适用于独立服务器的用户)
我的情况:独立的主机LAMP环境,Apache2.x
第一步:检查 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>



此时请务必注意,如果网站使用通过虚拟主机来定义,请务必加到虚拟主机配置中去,如果加在虚拟主机配置外部将可能无法使用。
例如,虚拟主机配置使用了httpd-vhosts.conf,打开此文件,设置规则如:
  • <virtualhost *:80>
  •         DocumentRoot "/usr/local/apache2/htdocs/***"
  •         ServerName www.***.net
  •         ServerAlias www.***.net
  •         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
  • </virtualhost>

改好后将 Apache 重启。
Discuz后台全局——启用 
前台刷新即可。
PHPWind的如上面步骤,修改为(PW后台的,可直接使用)
  • <ifmodule mod_rewrite.c>
  • RewriteEngine On
  • RewriteRule ^(.*)-htm-(.*)$ $1.php?$2
  • </ifmodule>


-----------------------------------------------------
Song Tao
Fiberhome  Technology


没有评论: