On Thu, 18 Feb 2010, John Oliver wrote:

I'm dealing with a site that is accessed via https://domain.gov  The
certificate is for "domain.gov"  I akready have a working rule to catch
http://domain.gov/ and rewrite to https://domain.gov/  I also got
http://www.domain.gov/ caught and rewritten with:

RewriteCond %{http_host} ^www\.domain\.gov [NC]
RewriteRule ^(.*)$ https://domain.gov/$1 [R=301]

However, attempts to access https://www.domain.gov/ are still an issue.
I tried:

RewriteCond %{https} ^www\.domain\.gov [NC]
RewriteRule ^(.*)$ https://domain.gov/$1 [R=301]

But that didn't work (I didn't really expect it to, but it was worth a
try!)

What magic sauce do I need to catch and rewrite that attempt?

I just dealt with a similar issue regarding two different certificates. Try this:

Options +FollowSymlinks
RewriteEngine on
RewriteCond %{http_host} ^www\.domain\.gov$ [NC]
RewriteRule ^(.*)$ https://domain.gov$ [R=301,NC]

James Smallacombe                     PlantageNet, Inc. CEO and Janitor
u...@3.am                                                           http://3.am
=========================================================================

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
  "   from the digest: users-digest-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to