• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

subdomain to URL

T

tbarber

Guest
As far as I can tell, the subdomain feature only allows creation of a subdomain which forwards to a hosting subdirectory. I want to forward a subdomain to a URL, however, when I try to set this up in DNS using CNAMES, I am unsure what to put in the 'canonical name' and how to make the subdomain forward to a URL.
 
Its easy to forward stuff around using php. In the root of the subdomain, create an index.php file with the following php script:

<?php
header("Location: http://www.example.com/mynewtoppage/"); /* Redirect browser */

/* Make sure that code below does not get executed when we redirect. */
exit;
?>

This will send a header to the requesting web browser that the page has moved, and to redirect it to the new location. This is largely transparent to the end user and works pretty well.

In DNS the canonical name is the real name of the host, so I'm not sure if this is what your looking for.
 
Back
Top