I'm building an internal URL shortening website for my company. Since so few people will use it, we're letting people choose their own custom shortened URLs. So, for example, you could have the shortened URL:
We thought it would be cool to offer, in addition to a regular redirect, the ability to leave the shortened URL in the address bar. One way to do this is with frames:
<frameset rows="100%,*" border="0">
<frame src="http://some_really_long_url" frameborder="0" />
<frame frameborder="0" noresize />
</frameset>
But this solution breaks links on the destination site (clicking one won't update the address bar).
What's the best way to accomplish this?