The new Plesk 7 has real subdomain support so we would like to encourage everyone (especially those with multi-domain accounts) to use subdomains even with redirects. Using the old system, you would create a subdomain just like a norrmal domain and if you wanted a redirect, you'd choose the Standard Forward or Frame Forward option under Setup.
You can achieve this with the new subdomain system as well. To create a subdomain as a standard forward, the quickest way to achieve this is with PHP. You can quickly create your subdomain in Plesk and then go into the file manager, go into subdomains, click on your new subdomain and then httpdocs. Create a file called index.php and enter this code (replacing the URL for whatever you will need):
Here is an example:
http://hostnexus.control-access.com/
To get the popular Frame Forward affect, you simply need to make a file called index.html and enter this code:
Code:
<HTML>
<HEAD>
<TITLE>TITLE GOES HERE</TITLE>
</HEAD>
<FRAMESET COLS="100%">
<FRAMESET ROWS="100%">
<FRAME SRC="http://domain.com">
</FRAMESET>
</FRAMESET>
</HTML>
(Many thanks to RobbieLePommie for that code)
And here is an example:
http://hn.control-access.com/
So if you have subdomains, please try and convert them to this new system as it will have a possible affect on apache restart times.