Forum Moderators: buckworks
In my case, one of the http strings was part of an absolute url to my style sheet as in the following example...
<head>
<link rel="stylesheet" type="text/css" href="http://www.mysite.com/styles.css">
</head>
...this I changed to <link rel="stylesheet" type="text/css" href="../styles.css">
I also had an http string in an absolute url in the <body> of my page as in...
<a href="http://www.mysite.com">
...which I changed to <a href="../index.htm">
That solved the problem for me, much to my surprise I might add. Best of luck.