nginx: muitos redirecionamentos

1

Eu preciso criar uma configuração nginx com redirecionamento, esta é minha conf:

server {

listen          8080;
server_name     test.example.org;
index           index.php index.html;
return          301 $scheme://test.example.org/dashboard;
location        /dashboard {
    alias           /path/to/files;
    index           index.php index.html;
    }
}

Preciso redirecionar test.example.org para test.example.org/dashboard, quando eu vou para test.example.org, meu navegador recebe um erro "Muitos redirecionamentos"

    
por hellb0y77 22.09.2014 / 13:42

2 respostas

1

Tente colocar

return          301 $scheme://test.example.org/dashboard;

dentro

location / {
}
    
por 22.09.2014 / 14:06
0

É assim que eu faço,

location / {

    index index.php index.html index.htm;
    try_files $uri $uri/ /index.php?$args @goto_dashboard;
}

location @goto_dashboard {
    return 301 http://xxx/dashboard;
}
    
por 05.08.2015 / 20:13

Tags