Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: How to set up URL Frame forwarding in cPanel  (Read 5062 times)

0 Members and 1 Guest are viewing this topic.

sajugovind

  • Guest
How to set up URL Frame forwarding in cPanel
« on: July 26, 2014, 03:07:31 pm »
Unfortunately URL Frame feature is not provided in cPanel.

But you can set up URL Frame forwarding for your domain on your own. For that you will need to create a simple html page* with the following code:

Code: [Select]
<html>
<head>
<title> Type here anything you want </title> <!-- This text will be shown as name of the page -->
</head>
<frameset>
<frame src="http://destination_domain.tld">
</frameset>
<noframes>Your browser does not support frames. Please click <a href="http://destination_domain.tld"> here </a> to be redirected automatically </noframes> <!-- This tag is required for old browsers. If browser does not support frames, end user will see a message indicated between <noframes>...</noframes> -->
</html>

Save changes to the file and you are done.

*Please note that you need to name this page index.html if it is the first (or the only) page for your website.

Thank you,