Hello All,
Basically the issue is the following:
I have this in my .htaccess located on the domain root (http://www.example.com)
RewriteCond %{SERVER_PORT} ^443$
RewriteCond %{REQUEST_URI} !admin(.*) [NC]
RewriteCond %{REQUEST_URI} !beta(.*)$ [NC]
RewriteCond %{REQUEST_URI} !members(.*) [NC]
RewriteCond %{REQUEST_URI} !images(.*) [NC]
RewriteCond %{REQUEST_URI} !templates(.*) [NC]
RewriteCond %{REQUEST_URI} !buyit(.*) [NC]
RewriteCond %{REQUEST_URI} !shoppingCart.php(.*) [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
Works great on the live site.
Does not work great with the beta site. If I go to the sub directory (beta) then I get the page and it loads up at first with the ssl enabled symbol then half way through the load this symbol changes to not secure.
I have checked the page and it's not that. In fact I found that if I comment each of those items the page in beta will load complete with the SSL symbol and stay that way. So these lines above are certainly affecting it but I don't understand why because I have beta in there as one of the directories to ignore.
Thank in advance, Nick