Domain forwarding is a process of redirecting a website to other URL
1. Login to cPanel and click the Redirects button in the Domains section.
2. You will then be on the Add Redirect page. Click the drop-down box for Type and choose if you want to create a Permanent (301), or Temporary (302) redirect:-
2. 302 redirect points your domain name to a temporary page while you build your permanent website. The specific redirects help the search engines distinguish how long your website can be viewed at the current location.
3. Click the next drop-down box and choose the domain you want to redirect and for the slash '/' field enter any folder names if necessary.
4. Enter the address you want to redirect to in the Redirects to section.
5.Choose if you want to "Only redirect with www." "Redirect with or without www." or "Do not redirect www."
6.Click the Add button when you are finished.
7. You are finished when you see a green message with the details of your redirect.
Frame Forwarding
Frame Forwarding works similar to URL redirect except that instead of redirecting the visitor to your web page, the web page will be fetched from the other server and displayed in a frame. The difference is that after redirection, the browser's address bar will continue to display your domain name.
Unfortunately, there is no tool in cPanel which would automatically set up URL frame. However, you are still able to do that using certain HTML tags in your site index file.
Below is the given HTML code for frame forwarding. This code will be added in Files > File Manager >public_html folder > index.html.
<html>
<head>
<title> Site Title </title>
<style>
body {
margin: 0;
padding: 0;
}
body, iframe {
width: 100%;
height: 100%;
}
iframe {
border: 0;
}
</style>
</head>
<body>
<iframe src="http://example.com"></iframe>
</body>
</html>
Certain versions of MySQL are vulnerable to a buffer overflow when a user-defined function is... Read More
Overview This wizard guides you through the setup of a MySQL® database, user accounts, and user... Read More
Overview This interface displays information about current connections to your FTP server and it... Read More
Overview You can use this interface to create and manage your website's File Transfer Protocol... Read More
Full BackupThe Backups interface allows you to download and store your files, databases,... Read More