Nginx配置ReactRouter browserHistory browserRouter

重定向根目錄

server {
  ...
  location / {
    try_files $uri $uri/ /index.html
  }
}

重定向到指定目錄

server {
  ...
  location / {
    root  /usr/local/nginx/html/name; //name 就是你要指定的路徑
    try_files $uri /index.html;
  }
}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章