On my forums I have <base href="http://mysite.com/vb3/"> between the head tags.
Some links on the forum are like this (as an example of a problematic url):
HTML Code:
<a href="/vb3/members/rossco-42066">View Public Profile</a>
Now if I was to highlight this and copy it, then paste it into the wysywig editor, then turn off wysiwyg mode to see what it inserted it would show this:
Code:
[UR L="http://mysite.com/vb3/../members/rossco-42066"]View Public Profile[/url]
Which means that once that html is actually shown you end up with a link like this:
http://mysite
.com/members/rossco-42066
instead of
http://mysite
.com/vb3/members/rossco-42066
(because /../ = back/up a folder).
Does anyone know what's going on here?