我们以apache服务器为例
1.首先确定您使用的 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
复制代码 如果存在,那么在配置文件(通常就是 conf/httpd.conf)中加入如下代码。此时请务必注意,如果网站使用通过虚拟主机来定义,请务 必加到虚拟主机配置,即 <VirtualHost> 中去,如果加在虚拟主机配置外部将可能无法使用,改好后将 Apache 重启。- <IfModule mod_rewrite.c>
- RewriteEngine On
- RewriteRule ^(.*)/store-([0-9]+)\.html$ $1/store.php?id=$2 [L,NC]
- RewriteRule ^(.*)/store-([0-9]+)-([a-z]+)\.html$ $1/store.php?id=$2&action=$3 [L,NC]
- RewriteRule ^(.*)/store-([0-9]+)-([a-z]+)-([0-9]+)\.html$ $1/store.php?id=$2&action=$3&xid=$4 [L,NC]
- RewriteRule ^(.*)/store-([0-9]+)-([a-z]+)-catid-([0-9]+)\.html$ $1/store.php?id=$2&action=$3&catid=$4 [L,NC]
- RewriteRule ^(.*)/street-([0-9]+)\.html$ $1/street.php?catid=$2 [L,NC]
- RewriteRule ^(.*)/street-([0-9]+)-([0-9]+)\.html$ $1/street.php?catid=$2&tagid=$3 [L,NC]
- </IfModule>
复制代码 如果没有安装 mod_Rewrite,您可以重新编译 Apache,并在原有 configure 的内容中加入 --enable-Rewrite=shared,然后再在 Apache 配置文件中加入上述代码即可。
2.另外一种用户是 Apache 虚拟主机用户。
在开始以下设置之前,请首先咨询您的空间服务商,空间是否支持 Rewrite 以及是否支持对站点目录中 .htaccess 的文件解析,否则即便按照下面的方法设置好了,也无法使用。
检查论坛所在目录中是否存在 .htaccess 文件,如果不存在,请手工建立此文件。Win32 系统下,无法直接建立 .htaccess 文件,您可以从其他系统中拷贝一份,或者在 Discuz.net 技术支持栏目中下载此文件。编辑并修改 .htaccess 文件,添加以下内容:
- # 将 RewriteEngine 模式打开
- RewriteEngine On
- # 修改以下语句中的 /brand 为你的品牌空间目录相对地址,如果程序放在根目录中,请将 /brand 修改为 /
- RewriteBase /brand
- # Rewrite 系统规则请勿修改
- RewriteRule ^store-([0-9]+)\.html$ store.php?id=$1 [L,NC]
- RewriteRule ^store-([0-9]+)-([a-z]+)\.html$ store.php?id=$1&action=$2 [L,NC]
- RewriteRule ^store-([0-9]+)-([a-z]+)-([0-9]+)\.html$ store.php?id=$1&action=$2&xid=$3 [L,NC]
- RewriteRule ^store-([0-9]+)-([a-z]+)-catid-([0-9]+)\.html$ store.php?id=$1&action=$2&catid=$3 [L,NC]
- RewriteRule ^street-([0-9]+)\.html$ street.php?catid=$1 [L,NC]
- RewriteRule ^street-([0-9]+)-([0-9]+)\.html$ street.php?catid=$1&tagid=$2 [L,NC]
复制代码 注意:品牌空间URL http://www.brand.com/ 或者 http://brand.xxx.com/,物理目录在 /public_html/www,那么在 /public_html/www 目录放置 .htaccess文件,使用Apache虚拟主机的规则 RewriteBase修改为 /
Apache虚拟主机,品牌空间URL http://www.xxx.com/brand,物理目录在 /public_html/www,那么在 /public_html/www 目录放置 .htaccess文件,使用Apache虚拟主机的规则 RewriteBase修改为 /brand
部分Apache虚拟主机,以二级目录作为二级域名的方式,即物理目录在 /public_html/www/brand,URL为 http://www.xxx.com/brand和http://brand.xxx.com/同时访问,该情况只能选其中一种URL作为品牌空间的URL,不能两种URL同时使用。
3.如果您站点dzx也开启了伪静态 ,要注意存放 dzx伪静态规则的.htaccess文件最好放在dzx的根目录下,不要放在dzx和品牌空间的 共同父目录,以免相互影响;如果必须放在共同父目录,那需要您检查一下dzx的规则,使之不要影响到品牌空间,或者将上一步创建的品牌空间的.htaccess文件删除,将其中的内容复制到dzx的规则的上面
开启伪静态出现店铺正在审核问题请参考此贴
https://discuz.dismall.com/forum. ... ead&tid=1839798
Win IIS非单一【品牌空间】站点开启伪静态 请参考此贴
https://discuz.dismall.com/forum. ... ead&tid=1840143
win IIS伪静态开启的基本方法可参考此贴
http://faq.comsenz.com/viewnews-11 |