如何強制SSL特定域目前我有htaccess的力SSL特定域
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
這是工作,但我有幾個在域添加在我的主機,當我嘗試訪問其他附加域,附加域也被迫使用SSL。
我嘗試這樣做:
RewriteCond %{HTTP_HOST} ^exampledomain\.org$ [OR]
RewriteCond %{HTTP_HOST} ^www\.exampledomain\.org$
RewriteRule ^/?$ "https\:\/\/www\.examplemydomain\.org\/" [R=301,L]
但它給我一個無限循環。
哇,那個工作...... tnx人。 Kodos –
插入符號和目標地址之間的空間相當重要;-)我學會了一件事,部分是通過反覆試驗。 –
@anubhava子域如何?例如:sub.exampledomain.com –