Simple domain name masking

Domain name masking allows you to show one URL in the browser's address bar, while another website's content is actually loaded. For example, when somebody opens your website, you can have yourdomain.com shown in the browser's address bar while the actual site loaded will be yourotherdomain.com.

To achieve the above, an index.html file with the following code should be placed in the main folder foryourdomain.com:

<html>
<head>
<title>Page Title</title>
<meta name="description" content="Description">
<meta name="keywords" content="Keyword1, Keyword2">
</head>
<frameset rows="100%,0" border="0">
<frame src="http://yourotherdomain.com" frameborder="0">
<frame frameborder="0">
</frameset>
</html>

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Brute Force Attack – What it is and How to Block It

Brute-force is a method of guessing your password by trying combinations of letters, numbers and...

What is pdftoppm and is it supported by Hostlantern?

Pdftoppm is a library that handles the conversion from Portable Document Format (PDF) files to...

How to clear your Internet browser’s cookies?

Sometimes you may need to clear the cookies saved by your browser. Basically the cookies...

Hacked Website

The most common reasons for a hacked (defaced) website include: - Outdated web application....

How to clean my files from malicious code?

If your website has been hacked and malicious content has been inserted into your files, you...