Tente colocar
return 301 $scheme://test.example.org/dashboard;
dentro
location / {
}
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"
Tente colocar
return 301 $scheme://test.example.org/dashboard;
dentro
location / {
}
É 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;
}
Tags nginx