Forum Moderators: phranque
RewriteEngine on
RewriteLog /usr/local/apache/sites/www.mysite.com/logs/rewrite.log
RewriteLogLevel 1
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^/(.*) [%{SERVER_NAME}...] [L,R]
This works great, any request for http:// is rewritten to https://
I am setting up a live chat solution and need to have the following happen:
If a request is made for [mysite.com...] or [mysite.com...] neither should be rewritten.
Hopefully this will keep live chat users from getting mixed content messages in their browser.
Can this be done with Redirect or should I have another Rewrite rule?
Thanks in advance.