Objective
Perform URL masking and domain forwarding through the website panel.
Prerequisites
None.
Steps
Step 1:
First, RDP into your server. After logging in, navigate to the wwwroot folder of the domain.
Then, open Notepad and copy the code below.
<html>
<head>
<script type="text/javascript">
function changeTitle()
{
if (top.frames['main'].document.title)
{
top.document.title=top.frames['main'].document.title;
}
}
</script>
</head>
<frameset>
<frame name="main" src="http://domainname.com/"scrolling="auto" target="main" ONLOAD="changeTitle();">
<noframes>
<body>
</body>
</noframes>
</frameset>
</html>
Then, edit the http://domainname.com into the link that you would like to forward.
Finally, save it as index.html into the wwwroot folder.