The first page is cloaked, but as soon as you navigate into my site the adress goes back to the original crappy address. I emailed the people who offer the cloaking and they said "make sure you hard code your links along with the target attribute, EXAMPLE: "
<a href="http://www.abcde.com/links/html" target="_top">
Well I'm using Flash buttons in Dreamweaver so I can't hardcode the information in. I had to enter the above information in the buttons PROPERTIES.
Basically, how do I set this up so that my web site will look something like this:
Example
www.abcdef.com = www.abc.com
www.abcdef.com/faq = www.abc.com/faq
and SO ON....
Thanks in advance if you can help! =)
This means that instead of:
<a href="http://www.abcde.com/links/html" target="_top">
You might want to go with:
<a href="http://www.abc.com/links/html" target="_top">
Keep in mind though that while this preserves the illusion of you not having a framed site and makes it easier for your users to bookmark deep portions of your site, it means two rounds of requests for each page viewed - one to load the frame and then one to load the actual page. In my experience this can make a site intolerably slow.