0

最后我切换到 nginx 网络服务器。但是每次我访问时,http://mywebsite.com它都会将我重定向到https://mywebsite.com. 我的服务器块(虚拟主机)中没有任何 ssl 选项。这是一个精简版(仅删除了帮助注释):

server {
        listen 80;
        root /usr/share/nginx/www/mywebsite/htdocs;
        index index.php index.html index.htm;
        server_name mywebsite.com;

        location / {
                try_files $uri $uri/ /index.html;
        }
        location ~ \.php$ {
                fastcgi_pass unix:/var/run/php5-fpm.sock;
                fastcgi_index index.php;
                fastcgi_param CONTEXT Staging;
                include fastcgi_params;
        }
}

我真的不知道我是否在正确的地方搜索错误?!

PS:PHP返回我["SERVER_PROTOCOL"]=> string(8) "HTTP/1.1"

谢谢指教!

4

1 回答 1

0

知道了!我在我注释掉的/etc/nginx/fastcgi_params那一行中找到了。fastcgi_param HTTPS $https;现在,它工作正常。希望对其他人有所帮助。

于 2013-10-23T19:55:30.713 回答