• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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