http to https 筆記
Godaddy上的網站
在 .htaccess 的尾巴加上底下字串
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Apache上的網站
[VirtualHost *:80]
DocumentRoot "/var/www/website"
ServerName www.website.com
[Directory "/var/www/website"]
Options FollowSymLinks
AllowOverride None
RewriteEngine on
RewriteRule (.*) https://www.website.com/$1 [L]
[/Directory]
[/VirtualHost]
PS.語法顯示的關係 [ ] 請自行換成 < >
PS.如果有用drupal boost,注意,這段語法會有問題,需修改(怎麼改~ 我還沒有測成功 @@),因為他會變成直接讀cache路徑,讓快取的連結露出馬腳出來)
留言