NYCPHP Meetup

NYPHP.org

[nycphp-talk] Canonical hostname help

John Campbell jcampbell1 at gmail.com
Wed Dec 5 14:28:16 EST 2007


This should work:

RewriteEngine on

RewriteCond %{HTTP_HOST}  !^www\.example\.com [NC]
RewriteCond %{HTTP_HOST}  !^$
RewriteCond %{SERVER_PORT}  !^443$
RewriteRule ^/(.*)$  http://www.example.com/$1 [R=301,L]

RewriteCond %{HTTP_HOST}  !^www\.example\.com [NC]
RewriteCond %{HTTP_HOST}  !^$
RewriteCond %{SERVER_PORT}  ^443$
RewriteRule ^/(.*)$  https://www.example.com/$1 [R=301,L]

-john c



More information about the talk mailing list