gpt4 book ai didi

nginx - Laravel 5 - URL 查询字符串的 NGINX 服务器配置问题

转载 作者:行者123 更新时间:2023-12-03 23:15:51 25 4
gpt4 key购买 nike

Laravel 没有从 URL 查询字符串接收任何 $_GET 变量。 $_GET 和 Input::all() 是空的。

示例:

example.app/ex/login.php?country=US

“国家=美国”从未出现在我的 $_GET 变量中

经过大量研究并尝试了许多不同的 NGINX 配置,我现在只能在使用此示例时产生结果。

示例:

example.app/index.php/ex/login.php?country=US

$_GET 变量现在显示国家/地区名称值对。

允许 URL 中的查询字符串的正确配置是什么?

我的“example.app”当前启用站点的配置是...

server {
listen 80;
server_name example.app;
root /home/vagrant/Code/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/registration.app-error.log error;

error_page 404 /index.php;

sendfile off;

location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_intercept_errors on;
fastcgi_buffer_size 16k;
fastcgi_buffers 4 16k;
}

location ~ /\.ht {
deny all;
}

}

最佳答案

除了被注释掉之外,这看起来是正确的。

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

我在测试中使用的裸骨是:
server {
listen 80 default_server;

root /var/www/project/public;
index index.php
server_name localhost;
location / {
try_files $uri $uri/ /index.php?$args;
}

location ~ \.php$ {
fastcgi_pass unix:/var/run/php5-fpm.sock;
include fastcgi_params;
}
}

$query_string 和 $args 在功能上是相同的,因为:
NGINX Docs

关于nginx - Laravel 5 - URL 查询字符串的 NGINX 服务器配置问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27849149/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com