2015-05-20 79 views
0

我有一個htaccess文件,強制所有內容都加載特定的https地址。強制https://導致htaccess出現問題

我們有兩個域,可以說web.no和website.no。

web.no點website.no,但我有我不想重定向到website.no

規則的子域dev.web.no是

RewriteEngine On 
RewriteCond %{HTTPS} !=on 
RewriteRule^https://website.no/%{REQUEST_URI} [L,R=301] 

我如何爲dev.web.no創建一個例外?

+0

我見[這裏] [1]它也許同樣的問題:d 古德勒克 [1]:http://stackoverflow.com/questions/ 10642426/htaccess的重寫子域到目錄 –

回答

0

您可以使用:

RewriteEngine On 

RewriteCond %{HTTPS} off 
RewriteCond %{HTTP_HOST} !=dev.web.no 
RewriteRule^https://website.no/%{REQUEST_URI} [L,R=301,NE]