Saturday 29 September 2012

Redirect to another domain without the url changing

To frame forward "domain1/file1.html" to "domain2/file2.html" put the following information in your file1.html file:

<HTML>
<HEAD>
<TITLE>domain1</TITLE>
</HEAD>
<FRAMESET ROWS="*,0">
<FRAME SRC="http://domain2/file2.html" NORESIZE>
<NOFRAMES>
Your browser does not support frames.
</NOFRAMES>
</FRAMESET>
</HTML>

No comments:

Post a Comment