鍍金池/ 問答/Linux/ nginx重定向

nginx重定向

沒用過nginx,我想把xxxx.com 重定向為 xxxx.com/home,在nginx嘗試了以下配置都沒法生效,客戶端是React開發(fā)的SAP

rewrite ^/ /home permanent;

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

SAP應用,在本地解決路由問題了

回答
編輯回答
執(zhí)念

用這個一句就搞定了

location / {
    rewrite ^/ /home permanent;
}

上面的不用加

2018年7月14日 22:55
編輯回答
離魂曲
location = / {
    return 301 /home;
}
2018年2月22日 05:56