17 June, 2021 seen 943
I was facing problems with some Drupal modules not being supported, before upgrading to PHP 7.4 version.
As I had…
Redirecting website visitors to a different domain name using Nginx is simple.
Add the following code to your server config:
server { server_name .domain.com; return 302 $scheme://forwarded-domain.com; }
Restart Nginx
sudo /etc/init.d/nginx restart