Nginx try_files não está funcionando, redirecionado para 302

1

Eu preciso acessar o URL abaixo.

link

No meu servidor NGINX, ele está me redirecionando para a página padrão. Por favor, encontre abaixo minhas configurações: 1ª configuração tentada ##########

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

segunda configuração testada ##########

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

Nota: Ele (Script) está funcionando no servidor Apache.

Atualizado ::::::::::::::::::::::::

arquivo .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;
}

Resposta 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
    
por PKumar 18.08.2017 / 15:36

0 respostas

Tags