A AbsolutelyFreeW Guest Nov 10, 2004 #1 I can't find an easy way to redirect subdomains. How is it done? should be under subdomain link in the control panel...
I can't find an easy way to redirect subdomains. How is it done? should be under subdomain link in the control panel...
S servmin Guest Dec 9, 2004 #2 We encountered this same issue. It's a shame Plesk doesn't have built-in subdomain redirects. We simply created an index page and redirected the user through some simple code. ASP.NET Version (index.aspx) <script runat="server" language="C#"> void Page_Load() { Response.Redirect("http://whereveryouwant.com:8080"); } </script> PHP Version <?php header("Location: http://www.example.com/"); ?>
We encountered this same issue. It's a shame Plesk doesn't have built-in subdomain redirects. We simply created an index page and redirected the user through some simple code. ASP.NET Version (index.aspx) <script runat="server" language="C#"> void Page_Load() { Response.Redirect("http://whereveryouwant.com:8080"); } </script> PHP Version <?php header("Location: http://www.example.com/"); ?>