我试图在我的Nginx服务器上的子文件夹中部署React应用程序.
此React应用程序的位置结构如下:www.example.com/reactApp.
我尝试设置我当前的Nginx.conf,如下所示:
server {
..other configs..
location /reactApp {
root /var/www;
index reactApp/index.html;
try_files $uri $uri/ /index.html;
}
..other configs..
}
@H_502_12@
最佳答案
try_files语句的最后一个组件应该是URI.假设您的index.html文件位于/ var / www / reactApp子文件夹下,您应该使用:
原文链接:/nginx/434336.htmllocation /reactApp { root /var/www; index index.html; try_files $uri $uri/ /reactApp/index.html; }
@H_502_12@有关更多信息,请参见this document