问题:品牌空间在子目录下面,设置了二级域名 fz.99n99.cn 和99n99.cn/fz/ 可同时访问。
http://99n99.cn/fz/ 访问,一切正常
fz.99n99.cn 首页正常,公告正常,频道正常,店铺和产品不正常,乱码,无法访问
伪静态规则:(存放在 www/fz 文件下)
- # 将 RewriteEngine 模式打开
- RewriteEngine On
- # 修改以下语句中的 /brand 为你的品牌空间目录相对地址,如果程序放在根目录中,请将 /brand 修改为 /
- RewriteBase /fz
- # 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]
复制代码
请教这种情况如何设置伪静态,如何修改伪静态,我不会啊
|