用的wecenter程序:
同一站点带www的域名和不带www的域名登陆退出不同步
另外301跳转(伪静态有效)不起作用,htaccess如下:<IfModule mod_rewrite.c>
RewriteEngine On
301跳转
RewriteCond %{HTTP_HOST} ^www.818gx.com [NC]
RewriteRule ^(.*) http://www.818gx.com/$1 [R=301,L]
伪静态
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /ask/index.php [L]
</IfModule>
添加回答
举报
0/150
提交
取消