注意: 1、规则里面的域名替换为实际域名 2、服务器内不需要开启部署HTTPS 3、宝塔面板不要开启强制HTTPS apache环境: Nginx环境: Windows系统 IIS7及以上版本 Windows2003系统 IIS6环境server
{
listen 80;
server_name abc.com;
}
#亚数机房CDN部署的SSL在自身网站server配置节中添加下面代码
if ( $http_from_https != 'on' ){
rewrite ^(.*) https://www.abc.com$1 permanent; # abc.com对应修改为您自已的域名
}
RewriteEngine On
RewriteCond %{HTTP:From-Https} !^on$ [NC]
RewriteRule ^(.*)$ https://www.abc.com/$1 [R=301,L] # www.abc.com对应修改为您自已的域名
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ https://www.abc.com$1 [R=301,L] # www.abc.com对应修改为您自已的域名