How to frame forward image link (country flag) for translating website

Styling Designs

New Member
Hello I'm new here and I have a question.

My hosting admin panel allows me to frame forward one domain to another domain. Meaning that when you enter for example www.domain1.com you are frame forwarded to www.domain2.com but the url will still stay www.domain1.com.

This is very handy because the visitor will think he stays on the same domain.

Now I have an idea to translate my site and use image links that do the same.

For example when you press the country flag US you will be frame forwarded to the US site but the url stays the same.

I want to do this because I understand that it is better to have you translated site on the tld of that specific country that you want to target, meaning better geo targeting.

Can anyone tell me how to frame forward an image to another domain?

Thank you!
 

LouTheDesigner

New Member
Hello and welcome to the forum!

I've always referred to this as cloaking, but here's what I would do:

Code:
<frameset rows="100%">
  <frame src="http://www.whatever.com/">
</frameset>

<noframes>
  <body><a href="http://www.whatever.com/"><img src="yourimage.jpg" /></a></body>

</noframes>
 
Top