0
我想了的.htaccess不添加在家鄉鏈路.htaccess在家中只能使用SSL,而在其他地方使用SSL?
,但在網站
所有其他環節的SSL
所以只有主頁不安全。什麼是最好的.htaccess的配置?
感謝
我想了的.htaccess不添加在家鄉鏈路.htaccess在家中只能使用SSL,而在其他地方使用SSL?
,但在網站
所有其他環節的SSL
所以只有主頁不安全。什麼是最好的.htaccess的配置?
感謝
使用RewriteRule
以匹配什麼存在超越/
,如果匹配,重寫爲SSL:
RewriteEngine On
# If ssl is not already active
RewriteCond %{HTTPS} !=on
# .+ matches one or more of any character... An empty string would not match
RewriteRule ^(.+)$ https://%{HTTP_HOST]}%{REQUEST_URI} [L,R=301]
通過httpd.conf
啓用mod_rewrite的和的.htaccess,然後把這個代碼在你.htaccess
下DOCUMENT_ROOT
目錄:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase/
RewriteCond %{HTTPS} !=on
RewriteRule ^.+$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteCond %{HTTPS} =on
RewriteRule ^$ http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]