• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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