If your browser points to
http://www.mysite.com/blog.html then any relative links will be to the root of the domain, i.e.
- Code: Select all
<img src="foo.jpg" />
is actually calling
- Code: Select all
<img src="http://www.mysite.com/foo.jpg" />
So this means that if you've redirected everyone to
http://www.mysite.com/blog/ then /blog becomes the base for relative links, so the the example above would instead reference
- Code: Select all
<img src="http://www.mysite.com/blog/foo.jpg" />
And this file may not exist.
From what you've described this sounds like what's going on, i.e. some image or CSS files are incorrectly relatively referenced.
Hope this helps.