• The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Resolved Changed new domain, only bring me to server default page

shen

New Pleskian
I have added a domain with a wordpress site on plesk, recently I tried to change the domain, but after the domain has been changed, every time I enter the site only bring me to the server default page, and not found on wp-admin page.

Also, I have tried to create a new wordpress site with the new domain, it works!

How should I solve this? Thank you!
 
Try regenerate the configuration files for the web server and all domains via CLI;

# plesk repair web
 
This is probably due to the server restart interval. When you change the domain, the server needs to reload the configuration. Until it has done so, requests to the new domain name cannot be processed by the virtual host, because the virtual host does not yet exist in the server configuration. You can either wait for the server restart interval to expire or you can run
# apachectl -t
# nginx -t
and if everything is OK followed by
# service httpd reload
# service nginx reload
on the command line to apply the the new configuration immediately.
 
Back
Top