将网址屏蔽HTTP重定向到https

时间:2018-12-10 13:48:01

标签: php .htaccess

我有2个网址相同的门户。 url-1:-http://my.domain.com url-2:-http://client.domain.com 但是我想将客户端URL http重定向到https。我的网址可以与http一起使用。 如何使用.htaccess重定向客户端URL?

1 个答案:

答案 0 :(得分:1)

尝试以下操作:

RewriteEngine On 
RewriteCond %{HTTP_HOST} ^yourdomain\.com [NC]
RewriteCond %{SERVER_PORT} 80 
RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R,L]

编辑:

“客户端域为https”

RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]