• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

subdomain redirect

A

AbsolutelyFreeW

Guest
I can't find an easy way to redirect subdomains. How is it done? should be under subdomain link in the control panel...
 
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/");

?>
 
thanks,

you can also do it directly from IIS Gui.
 
Back
Top