I followed the directions above. Here is my linke:
http://www.xfragging.com/clients
The problem is when people go there IE asks if I want to display some secure and non-secure items. I really need everything to be secure, which is what I thought editing the .htaccess file would do Does anyone have any suggestions?
Here is my .htaccess file:
# Use PHP5 Single php.ini as default
AddHandler application/x-httpd-php5s .php
RewriteEngine on
Options +FollowSymlinks
#Rewrite the URL for clients to always use https except for the clients/dl.php file
RewriteCond %{REQUEST_URI} !^/clients/admin/cron.php [NC]
RewriteCond %{REQUEST_URI} !^/clients/dl.php [NC]
RewriteCond %{REQUEST_URI} ^/clients/ [NC]
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*)$ https://www.domain.com/$1 [R=301,L]
#Rewrite the URL for clients dl area to always use http
RewriteCond %{REQUEST_URI} !^/clients/admin/cron.php [NC]
RewriteCond %{REQUEST_URI} ^/clients/dl.php [NC]
RewriteCond %{SERVER_PORT} !^80$
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^xfragging.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.xfragging.com$
RewriteRule ^order/?$ "http\:\/\/xfragging\.com\/order\/order\.php" [R=301,L]
RewriteCond %{HTTP_HOST} ^xfragging.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.xfragging.com$
RewriteRule ^gspanel$ "http\:\/\/69\.31\.15\.186\/" [R=301,L]
RewriteCond %{HTTP_HOST} ^xfragging.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.xfragging.com$
RewriteRule ^oadmin$ "http\:\/\/xfragging\.com\/order\/admin\/" [R=301,L]
RewriteCond %{HTTP_HOST} ^xfragging.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.xfragging.com$
RewriteRule ^forums$ "http\:\/\/www\.xfragging\.com\/forum" [R=301,L]
RewriteCond %{HTTP_HOST} ^xfragging.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.xfragging.com$
RewriteRule ^chat/download$ "http\:\/\/www\.livezilla\.net\/downloads\/files\/LiveZilla_3\.1\.7\.11_Setup\.exe" [R=301,L]
RewriteCond %{HTTP_HOST} ^my.xfragging.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.my.xfragging.com$
RewriteRule ^/?$ "http\:\/\/69\.31\.15\.186" [R=301,L]
RewriteCond %{HTTP_HOST} ^xfragging.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.xfragging.com$
RewriteRule ^/?$ "https\:\/\/xfragging\.com\/order\/order\.php" [R=301,L]