Only packages "Domain Refistration" and "Domain Registration + Email" have got redirect.
For hosting domains (Windows or Linux), the solution is uploading in the webspace a page named "index.html" with a redirect script in it like this:
<script type="text/javascript">
location.replace('http://www.domainname.ext/');
</script>
Domainname.ext must be changed with your domain name, like Misterdomain.eu.
This redirect type send the visitor to the page which the Link send to, also the url will be the links one.
If you want the URL displayed remains unchanged and the seen page the links one, the "index.html" have to contain a frame type redirect like this:
<html>
<head>
<title>PAGE TITLE</title>
</head>
<frameset rows="0,100%" frameborder="NO" border="0" framespacing="0">
<frame src="" name="topFrame" title="topFrame">
<frame src="http://www.domainname.ext" name="mainFrame" title="mainFrame">
</frameset>
<noframes>
<body>
</body>
</noframes>
</html>