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

[HOW TO] use cp.domain.com instead of www.domain.com:8443

KingSky

New Pleskian
It took me hours to figure this out, but I finally have it working!

In your vhost.conf and vhost_ssl.conf files for each virtual host (located in /home/httpd/vhosts/domain.com/conf)

Add this code:

Code:
ServerAlias cp.@domain_name@
Options +FollowSymLinks 
RewriteEngine on 
RewriteCond %{HTTP_HOST}  !^(www\.)?@domain_name@
RewriteCond %{HTTP_HOST}  ^(cp\.)?([^\.]*)\.com 
RewriteRule ^(.*)$
[url]https://www.@domain_name@:8443[/url]

Keep in mind that if this file isn't there, you just need to create it.

Make sure to replace @domain_name@ with your domain name. You can put this code directly in your .skel/conf files with no changes to the above code so that new domains are already set up this way :)

The only problem with this code is this line:

RewriteCond %{HTTP_HOST} ^(cp\.)?([^\.]*)\.com

does anybody know how to modify it so that it catches all tld's besides .com?
 
Back
Top