How do I mask the address of another site using HTML?
For example, I'd like:
http://www.example.com/source.html
To point to another page:
http://www.example.com/dest.html
Note that the destination page could be on another domain.
How do I mask the address of another site using HTML?
For example, I'd like:
http://www.example.com/source.html
To point to another page:
http://www.example.com/dest.html
Note that the destination page could be on another domain.
On
There's plenty of people who would assert that your objective is to mislead the user, that it is unethical. However, if you really must do this, can you leave the link alone and redirect when the user arrives at the linked page?
On
If you are using Apache, you can use REWRITE mod, but it must be in the same domain. In .NET there rewrite libraries done. People will see in the address bar: source.html but the code will be that of dest.html.
Any other thing is simple redirects.
A frameset seems to be what I was looking for: