强制https://导致htaccess出现问题

时间:2015-05-20 07:54:19

标签: apache .htaccess http https

我有一个htaccess文件,强制所有内容加载特定的https地址。

我们有两个域名,比如说web.no和website.no。

web.no指向website.no,但我有一个子域名dev.web.no,我不想重定向到website.no

规则是

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

如何为dev.web.no制作例外?

1 个答案:

答案 0 :(得分:0)

您可以使用:

RewriteEngine On

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