目前在一台Centos上安裝了Apache,並且創建了三個虛擬機,其中一個虛擬機配置了SSL服務。我要的效果是停用HTTP訪問,只允許HTTPS訪問。請問該如何配置實作?
目前的情況:HTTP和HTTPS都可以存取。
过去多啦不再A梦2017-05-16 17:03:15
你是要想http強制跳到https訪問,還是說http直接設定不可訪問。一般部署了https的網站考慮到使用者習慣http輸入,會在伺服器設定http強制跳到https,Apache伺服器設定如下:
如果需要整站跳轉,則在網站的設定檔的
RewriteEngine on
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*)?$ https://%{SERVER_NAME}/ [L,R]
如果對某個目錄做https強制跳轉,則複製以下程式碼:
RewriteEngine on
RewriteBase /yourfolder
RewriteCond %{SERVER_PORT} !^443$
#RewriteRule ^(.*)?$ https://%{SERVER_NAME}/ [L,R]
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]