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

Pointing ip to default domain in Plesk 12.0.18

mike123

New Pleskian
When typing my ip it used to go to Plesk landing page.

Then through the option: server > tools > IP Addresses, I changed the "Default site" to my main domain, however, it just points to the main page, and not changes the url to the domain (keeps the ip in title, and not show the domain url).

How to make it forwarded to the domain (show it in the address bar), and not just to the index page?

Thanks
 
Hello Mike,
You will need to implement that in your website files.
Eg, from your index file you can add:
Code:
<?php if ($_SERVER['HTTP_HOST'] != 'yourdomain.com') { header("Location: http://yourdomain.com"); } ?>

NB: You will need to replace yourdomain.com with your own domain name.
 
Back
Top