我有一台RESTful服务器。我用Nginx提供静态文件。我希望根网址(www.website.com,www.website.com /)指向静态html文件,并将 EVERY 其他请求重定向到我的RESTful服务器。我有什么:
location / {
proxy_pass http://localhost:5000/;
}
location /static {
autoindex on;
alias "some location";
}
location /media {
autoindex on;
alias "some location";
}
我需要的是:仅重定向根URL的指令(不是/
之类的所有内容)。
答案 0 :(得分:1)
Nginx location
directive有=
修饰符。
location = / {
# only request to '/' gets here
}
location / {
# all other goes here
}