繁体   English   中英

如何通过Nginx和PHP获取方法参数

[英]How to get get method parameter by nginx and php

我现在无法获取方法参数。 根据调查,我注意到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;
#}
}

您的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 )。 在您的情况下,第一个URL是$ uri,不带查询参数。 如果您切换网址的顺序,则您的php脚本应该能够访问查询字符串。 您可以尝试以下方法:

try_files /index.php$query_string $uri $uri/;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM