Nginx try_files 不工作,重定向到 302

Nginx try_files 不工作,重定向到 302

我需要访问以下网址。

http://localhost/admin/logout.php/?access_token=21fd3cfe5bab26131ff5244c08e5f520&continue=/

在我的 NGINX 服务器中,它将我重定向到默认页面。请查看以下我的配置:尝试了第一个配置 ##########

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

第二次配置已尝试##########

location / {
  #try_files $uri $uri/ /index.php?q=$uri&$args;
  }

注意:它(脚本)在 Apache 服务器中运行。

更新 ::::::::::::::::::::::::::::::::::::::

.conf 文件

server {
  server_name test.test.com www.test.test.com;
  access_log /home/log/access.log combcomed buffer=256k flush=60m;
  error_log /home/log/error.log;

  root /home/public;
  location ~ (?:^|/)\. {
   deny all;
  }

  location / {
  #try_files    $uri $uri/ /index.php;
  try_files $uri $uri/ /index.php?q=$uri&$args;
  }

  include /usr/local/nginx/conf/staticfiles.conf;
  include /usr/local/nginx/conf/php.conf;
  include /usr/local/nginx/conf/drop.conf;
  include /usr/local/nginx/conf/vts_server.conf;
}

HTTP 响应:

HTTP/1.1 302 Moved Temporarily
Date: Fri, 18 Aug 2017 14:55:04 GMT
Content-Type: text/html
Connection: keep-alive
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Location: /admin/main.php
Server: nginx centminmod
Content-Length: 5687

相关内容