侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

nginx中配置react-router参数跳转

2024-05-15 星期三 / 0 评论 / 0 点赞 / 106 阅读 / 548 字

location / { root /home/iwork; index index.html; try_files $uri /index.html; #这句关键哦}#子路径刷新l

location / {    root /home/iwork;    index index.html;    try_files $uri /index.html; #这句关键哦}#子路径刷新location ^~ /main {    try_files $uri /index.html;}#代理        location ^~ /iwork/ {    proxy_pass         http://192.168.0.193:8080/iwork/;    proxy_set_header   Host             $host;    proxy_set_header   X-Real-IP        $remote_addr;    proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;}

nginx 只匹配 / ,剩下的应该由react-router来做

广告 广告

评论区