How to change URL of a Drupal site
To change the URL of a Drupal website, edit the file sites/default/settings.php Find the line $base_url = ‘https://www.your-current-domain’; // NO trailing slash!…
To change the URL of a Drupal website, edit the file sites/default/settings.php Find the line $base_url = ‘https://www.your-current-domain’; // NO trailing slash!…
Here is Drupal 7 server configuration for Nginx with letsencrypt SSL. server { listen 443 ssl http2; ssl_certificate /etc/letsencrypt/live/yourdomain.com/fullchain.pem; # managed by…
To disable maintenance mode in drupal 7.x run the command drush vset maintenance_mode 0 Example $ drush vset maintenance_mode 0 maintenance_mode was…
Drupal 7 Enable/Disable Maintenance Mode How to change URL of a Drupal site Get information about drupal installation drush status How to…