> From: Chris Arnold [mailto:carn...@electrichendrix.com] 
> Sent: Saturday, February 07, 2015 9:50 AM
> To: <users@httpd.apache.org>
> Subject: [users@httpd] Redirect HTTP to HTTPS
>
> Apache 2.4.10 on SLES 12. I am trying to redirect a subdomain address from 
> http to https. So when a user forgets to use https they will still land on 
> the correct page. I tried using:
> 
> RewriteEngine On
> RewriteCond %{HTTPS} off
> RewriteCond %{HTTP_HOST} ^(sub1|sub2|sub3)\. [NC]
> RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
> 
> this does not redirect to https. Instead you land at the http site. What in 
> those statements are not correct? I have tried using just 1 subdomain with 
> the same results
>


I have never had a problem with this one:

RewriteEngine   On
RewriteOptions  Inherit
RewriteCond     %{HTTPS} !=on
RewriteRule     (.*)    https://%{SERVER_NAME}%{REQUEST_URI} [Last,Redirect=301]


-- Birl

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to