DigitalOcean offers multiple domains, subdomains addresses for a single Droplet. For example, you can give example1.com and example2.com URL address for the same Droplet created in DigitalOcean. The ServerPilot.io, who made the WordPress simpler for DigitalOcean has disabled the URL customization from Admin panel. Because you can give multiple URL/website address for the same App created in Serverpilot.io
Anyway, you can follow the steps to bring editable textbox to URL parameters to WP admin panel.
- Open wp-config.php from WordPress installed directory
- serach define ('WP_SITEURL', SP_REQUEST_URL) and define('WP_HOME', SP_REQUEST_URL);
- replace it with define('WP_SITEURL','http://example.com'); define ('WP_HOME','http://example.com'); respectively.
- You can keep www or non-www URL structure
- Done..!