回复 mengganzi 的帖子
第二个问题,我不知道弄对没有.我的是"5、Apache虚拟主机,品牌空间URL http://www.xxx.com/brand,物理目录在 /public_html/www,那么在 /public_html/www 目录放置 .htaccess文件,使用Apache虚拟主机的规则 RewriteBase修改为 /brand"
我把静态规则放在/brand下,静态规则如下:
###虚拟主机用户
# 将 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]
请帮我看看哪里操作不对 |