.htaccess强制https但排除子域

时间:2014-06-06 01:37:14

标签: regex apache .htaccess mod-rewrite

如何排除子域名被迫加入https并重定向到主网址?我在.htaccess文件中使用了以下内容,但需要一些帮助,因为我的子域(stage.mydomain.com)被重定向/无法访问。

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

我尝试了一些选择,但没有运气 - 任何想法?谢谢!

1 个答案:

答案 0 :(得分:4)

你的第一条规则如下:

RewriteCond %{HTTP_HOST} !^stage\.mydomain\.com$ [NC]
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R,L]