• 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 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