Nginx 无法正确重定向非 www 版本

Nginx 无法正确重定向非 www 版本

http版本由nginx处理,https版本由apache处理。

现在我的问题是,例如当你输入https://sitename.com/contact/它工作正常,但是当你输入http://sitename.com/contact/正在重定向到主页https://www.sitename.com

以上是我的 nginx 配置。

server {

        root /var/www/html/;
        index index.php index.html index.htm;

        server_name sitename.com www.sitename.com;

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

        location ~ \.php$ {

        proxy_set_header X-Real-IP  $remote_addr;
        proxy_set_header X-Forwarded-For $remote_addr;
        proxy_set_header Host $host;
        proxy_pass http://127.0.0.1:8080;

         }

         location ~ /\.ht {
                deny all;
        }



    listen 80; # managed by Certbot

}

答案1

我根本看不到该配置中的任何重定向或重写。

类似下面的方法应该可以工作:

server {
server_name www.example.com;
return 301 $scheme://example.com$request_uri;}

我从数字海洋页面。

答案2

nginx.conf 文件缺少这个

index index.php index.html index.htm;

相关内容