Hi, i'm new to nginx, i need create a redirect with a subfolder.
I need redirect 2 link to same folder, ex.
www.domain.com ---> /path/to/files
www.domain.com/foo ---> /path/to/files
I have tried with "location" but don't work:
server {
listen 81;
server_name domain.com;
index index.php index.html;
root /path/to/files;
location /foo {
root /path/to/files;
index index.html;
}
}
I need redirect 2 link to same folder, ex.
www.domain.com ---> /path/to/files
www.domain.com/foo ---> /path/to/files
I have tried with "location" but don't work:
server {
listen 81;
server_name domain.com;
index index.php index.html;
root /path/to/files;
location /foo {
root /path/to/files;
index index.html;
}
}