• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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