Mobile app version of vmapp.org
Login or Join
Ogunnowo487

: Domain masking emergency I would never normally do this, but 1and1 have been experiencing a "glitch" with their system that means you can't add new external domains. It's pretty shocking, to

@Ogunnowo487

Posted in: #Html #Iframe

I would never normally do this, but 1and1 have been experiencing a "glitch" with their system that means you can't add new external domains. It's pretty shocking, to be honest, and unfortunately my client's site needs to go live under their old domain ASAP.

The only solution is to temporarily set up an iframe domain mask... but how best to do this? My attempts don't seem to be working properly (the iframe doesn't fill the screen).

Please help me with this crappy solution until 1and1 get their act together.

Thanks.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Ogunnowo487

1 Comments

Sorted by latest first Latest Oldest Best

 

@Sarah324

No need to use an <iframe> when a regular <frameset> will do.

(This is untested as I haven't used frames in more then a decade).

<HTML>
<HEAD>
<TITLE>A Basic Example of Frames</TITLE>
</HEAD>
<FRAMESET ROWS="1%, *">
<FRAME SRC="index.html">
<FRAME SRC="http://www.otherdomain.com">
</FRAMESET>
</HTML>


Warning this is not search engine friendly. Doing this for an extended period of time will have negative consequences for their rankings.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme