FooBar
FooBar

Reputation: 6138

Nginx server removes www and 301 redirects to wrong host

I have a weird 301 redirection issue. My server is set up to handle multiple domains pointing to the server, i.e.

However there is a strange 301 issue when visiting a custom domain and including www., like: http://www.somecustomdomain.com. On the maindomain this works fine:

However, when visiting a custom domain it redirects from: http://www.somecustomdomain.com/some-uri to https://maindomain.com/some-uri (!!). You would expect it to redirect to: http://somecustomdomain.com/some-uri

I have tried debugging this issue (ensured that my browser does not cache the 301 redirects) and I have not been able to resolve the issue. I have three nginxs confiugrations inside my sites-available directory. They are listed here:

maindomain.com contents

server {
    listen 80;
    server_name maindomain.com;
    return 301 https://maindomain.com$request_uri;
}

server {
    listen 443 ssl;
    server_name maindomain.com;
    root /home/forge/maindomain.com/public;

    # FORGE SSL (DO NOT REMOVE!)
    ssl_certificate /etc/nginx/ssl/maindomain.com/30126/server.crt;
    ssl_certificate_key /etc/nginx/ssl/maindomain.com/30126/server.key;

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;

    index index.html index.htm index.php;

    charset utf-8;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location = /favicon.ico { access_log off; log_not_found off; }
    location = /robots.txt  { access_log off; log_not_found off; }

    access_log off;
    error_log  /var/log/nginx/maindomain.com-error.log error;

    error_page 404 /index.php;

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
    }

    location ~ /\.ht {
        deny all;
    }
}

catch-all contents

server {
    listen 80;
    server_name ~^(.+)$;

    root /home/forge/maindomain.com/public;

    index index.html index.htm index.php;

    charset utf-8;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location = /favicon.ico { access_log off; log_not_found off; }
    location = /robots.txt  { access_log off; log_not_found off; }

    access_log off;
    error_log  /var/log/nginx/maindomain.com-error.log error;

    error_page 404 /index.php;

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
    }

    location ~ /\.ht {
        deny all;
    }
}

www.maindomain.com contents

server {
    listen 80;
    server_name www.maindomain.com;
    return 301 $scheme://maindomain.com$request_uri;
}

If i CURL into http://www.somecustomdomain.com/some-uri this is the content I receive:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8" />
        <meta http-equiv="refresh" content="1;url=https://maindomain.com/some-uri" />

        <title>Redirecting to https://maindomain.com/some-uri</title>
    </head>
    <body>
        Redirecting to <a href="https://maindomain.com/some-uri">https://maindomain.com/some-uri</a>.
    </body>
</html>%

Upvotes: 1

Views: 1251

Answers (1)

elDante
elDante

Reputation: 36

You need an extra server configuration for www domains:

server {
  server_name   ~^(www\.)?(?<domain>.+)$;

  location / {
    return 301 $scheme://$domain/$uri;
  }
}

Upvotes: 2

Related Questions