nginx重定向

没用过nginx,我想把xxxx.com 重定向为 xxxx.com/home,在nginx尝试了以下配置都没法生效,客户端是React开发的SAP

rewrite ^/ /home permanent;

rewrite ^/ xxxx.com/home permanent;
    
location / {
    rewrite ^/ /home permanent;
}

SAP应用,在本地解决路由问题了

阅读 2.2k
2 个回答

用这个一句就搞定了

location / {
    rewrite ^/ /home permanent;
}

上面的不用加

location = / {
    return 301 /home;
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题