第一個問題
假設有個域名是
http://xxx.ooo.com/
但我這是有 https的,但是他卻不會自己加
假設有人進入 http://xxx.ooo.com/ 時,是否可以增加 https://xxx.ooo.com/ 並重定向?
第二個問題
假設進入https://ppp.com ,但這其實沒有https,所以他會警告然後停住,怎樣實現假設進入 https://ppp.com,可以轉移到 https://www.ppp.com?
我習慣用 Rewrite
apache :
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{SERVER_NAME}/$1 [R,L]
nginx :
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name example.com www.example.com;
return 301 https://$server_name$request_uri;
}
https://ppp.com 轉移到 https://www.ppp.com
也用 rewrite 處理 .......