Search Our Database

How to add Frame Forwarding to your website

Last updated on |
by

Step 1: If you wish to preview your site as another site without redirecting the site, you may add the frame forwarding to your website hosting. To do that, create an index.html file and add the following lines into the file.

<html><head><title>Title of your webpage</title></head>
<frameset cols="*">
 <frame name="main" src="https://www.site-helper.com" scrolling="auto" noresize>
 <noframes>
 <body>
 
 Your browser does not support frames
 
 </body>
 </noframes>
</frameset>
</html>

Step 2: Replace the “Title of your webpage” to any title and replace the website url “www.site-helper.com” to the url that you wish to preview.