React Web 应用程序路由无法使用 nginx 查询字符串

React Web 应用程序路由无法使用 nginx 查询字符串

我正在尝试使用 nginx 托管我的 react 网站。除了路由有查询字符串之外,一切正常。

location / {
    try_files $uri /index.html;
}
http:// example.com                          //works fine
http:// example.com/courses                  //works fine
http:// example.com/courses?type=software    //not working shows blank page.
http:// example.com/courses?type=software&institute=xyz    //not working shows blank page.

请帮助我。谢谢

答案1

您需要传递查询参数:

try_files $uri /index.html$is_args$args;

相关内容