Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
314 views
in Technique[技术] by (71.8m points)

forwarding - How do I unmask a link from my domain masked site to an external site?

I registered domain www.a.com I then forwarded with masking (using GoDaddy) traffic from www.a.com to www.really.long.url.com, so users will only see www.a.com in their address bar when visiting my site. The problem, is that if a user clicks a link to www.google.com while on my website, they get directed to Google, but their address bar still reads www.a.com.

How can I disable this domain masking for external links?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Best answer would be "don't use domain masking" because it has many drawbacks including:

  • The problem you have - when users leave your site via links to external sites the address bar still shows your domain.
  • Different pages within your own site don't change the address bar either, so user's can't bookmark individual pages of your site
  • Your favicon won't work
  • Search engines will not index your content as if it belonged to a.com, because it doesn't - it's still being served by really.long.url.com
  • Any RSS feeds advertised by your site will not show up in the address bar on browsers that support this

To avoid these drawbacks, you should configure the DNS for a.com so it and the www CNAME are actually pointed at your webserver, and your website can be served from a.com directly.

Having said that, to solve the question you asked, links to external sites from within a domain masked site should be changed to use the deprecated target="_top" attribute. This breaks out of the invisible frameset that GoDaddy (and others) use to implement the not-very-clever "domain masking". The source of http://www.a.com/ basically looks something like this:

<frameset rows="100%,*" border="0">
  <frame src="http://www.really.long.url.com" frameborder="0" />
</frameset>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...