我现在无法获得方法参数。 根据调查,我注意到php无法通过php获取参数。 你知道这个决议吗? 我认为原因是Nginx或php设置。
Nginx设置低于设置。
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
location / {
root /var/www/html/startup_intern/public;
index index.php index.html index.htm;
try_files $uri $uri/ /index.php$query_string;
add_header 'Access-Control-Allow-Origin' "localhost:3001";
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'Accept,Authorization,Cache-Control,Content-Type,DNT,If-Modified-Since,Keep-Alive,Origin,User-Agent,X-Mx-ReqToken,X-Requested-With';
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/html/startup_intern/public;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
# root html;
fastcgi_pass 127.0.0.1:9000;
#fastcgi_pass /var/run/php-fpm/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/html/startup_intern/public/$fastcgi_script_name;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
答案 0 :(得分:0)
您的nginx配置似乎有问题。这一行:
try_files $uri $uri/ /index.php$query_string;
有一个错误。 Nginx文档说,try_files指令用于按顺序尝试给定的URL。如果第一个成功则返回,否则检查下一个URL。 (http://nginx.org/en/docs/http/ngx_http_core_module.html#try_files)。在您的情况下,第一个网址是$ uri,没有查询参数。如果您切换网址的顺序,那么您的PHP脚本应该能够访问查询字符串。您可以尝试以下方法:
try_files /index.php$query_string $uri $uri/;