There are a lot of code examples for using .htaccess to add www to a url but they are usually confined to using http. does anybody have an example of how to get it to work in both cases?
+2
A:
Sure:
RewriteCond %{HTTP_HOST} !^www\.
RewriteCond %{HTTPS}s ^on(s)|
RewriteRule ^ http%1://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
The second condition checks if the HTTPS environment variable (either on
or off
) is set to on
and captures the appended s
that is then available with %1
. If it doesn’t match, %1
is just an empty string.
Gumbo
2010-01-19 22:14:08
@Gumbo, should that second line be: %{HTTPS} ?
AJ
2010-01-19 22:15:44
@AJ: Yep, fixed that, thanks.
Gumbo
2010-01-19 22:16:34