To configure a web forwarding while hiding the address in the address bar of the web browser, you can use frames as in the example below:
<html>
<head>
<title>TARGETDOMAIN.COM</title>
</head>
<frameset rows='100%, *' frameborder=no framespacing=0 border=0>
<frame src="http://TARGETDOMAIN.COM" name=mainwindow frameborder=no framespacing=0 marginheight=0 marginwidth=0></frame>
</frameset>
<noframes>
<h2>
Your browser does not support frames. We recommend upgrading your browser.
</h2>
</noframes>
</html>
You must replace TARGETDOMAIN.COM with the URL to which you want to forward.