• 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

How do I change the default page?

Default Plesk page you can find here - /var/www/vhosts/default/htdocs/
 
A quick work around to do this would be to create the file
/var/www/vhosts/default/htdocs/index.php

with this content:

<?
if ( strpos($_SERVER['SERVER_NAME'],"XXXXXXXXXX") !== false ) {
header( 'Location: /index.html');
} else {
header( 'Location: /disabled.html');
}
?>

(replace XXXXXXXXX with your domain name)

then create the file /var/www/vhosts/default/htdocs/disabled.html and put anything you like.

Aris
 
Back
Top