问:https怎么做自动跳转http?
我的这个一直跳转到https。这么设置跳转到http?
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^list-([0-9] ).html$ /plus/list.php?tid=$1
RewriteRule ^list-([0-9] )-([0-9] )-([0-9] ).html$ /plus/list.php?tid=$1&totalresult=$2&PageNo=$3
RewriteRule ^([0-9] ).html$ /plus/view.php?arcID=$1
RewriteRule ^view-([0-9] )-([0-9] ).html$ /plus/view.php?aid=$1&pageno=$2
#防止模板下载
RewriteRule templets/(.*).(htm)$ – [F]
#设置默认主页及404页面
<Files ~ "^.(htaccess|htpasswd)$">
deny from all
</Files>
ErrorDocument 404 /index.php
order deny,allow
DirectoryIndex index.html index.php
#屏蔽 uploads,data,templets 三个目录执行php能力
RewriteRule uploads/(.*).(php)$ – [F]
RewriteRule data/(.*).(php)$ – [F]
RewriteRule templets/(.*).(php)$ – [F]
# 虚拟主机二级域名绑定到子目录 开始
RewriteCond %{HTTP_HOST} ^(www.)?m.wjzm.net$
RewriteCond %{REQUEST_URI} !^/m/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /m/$1
RewriteCond %{HTTP_HOST} ^(www.)?m.wjzm.net$
RewriteRule ^(/)?$ m/ [L]
# 虚拟主机二级域名绑定到子目录 结束
</IfModule>
,https怎么做自动跳转http?
问:百度收录的都是https?
答:您好,您的服务器部署了ssl,您以前应该做过http301到https,所以百度收录的是https,https更安全且有利于百度收录,推荐您加上http301到https的跳转,以后也做https的优化。
若确定要https跳转到http的话,您可以在www下的.htaccess文件中加上下面几行规则即可。
RewriteCond %{HTTP:From-Https} ^on$ [NC]
RewriteCond %{HTTP_HOST} ^(www.)?wjzm.net$ [NC]
RewriteRule ^(.*)$ http://www.wjzm.net/$1 [R=301,L]
非常感谢您长期对我司的支持!
问:用https感觉百度不怎么收录,而且还是免费的。效果也不大。还是改成http吧
答:您好,查看您已经添加,百度https的站点自动301到http了,不过要更换收录需要等百度更新,请您知悉。
非常感谢您长期对我司的支持!