On 2011-07-25 22:49, James Moe wrote:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 07/25/2011 12:14 PM, Jeroen Geilman wrote:You should not use rewriting for this, it is entirely unnecessary and only adds complexity. Instead, you add a new vhost for www.sohnen-moe.com, and do a blank redirect to HTTPS.The ISP for our site has a<www.sohnen-moe.com> URL "built-in." That is, I cannot create one since it already exists outside of my control.I suspect that the above is using the highly dubious VirtualHost * construct, which should die and burn in hell. If so, you are not taking into account the possibility that the request is coming in over HTTPS. Add another rewritecond that checks for it.Okay. I changed the rule to RewriteEngine on RewriteCond %{HTTP_HOST} =www.sohnen-moe.com RewriteCond %{SERVER_PORT} =80 RewriteRule ^(.*)$ https://sohnen-moe.com/$1 [R,L] Now no redirection occurs at all for any browser. Later: Now it is working as expected for all browsers I have tested. I do not know what changed in the intervening half hour.
Browser caches expired. -- J. --------------------------------------------------------------------- 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-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx