nginx 地址重写

例如,

www.baidu.com    跳到   www.baidu.com/index.html

  #if ( $http_host ~* "^(.*)\.baidu\.com$") {
                rewrite ^(.*) https://www.baidu.com/index.html break;
               }


加在server中

rewrite ^(.*) https://www.baidu.com/index.html permanment;
rewrite /api/(.*) /$1 break;
posted @ 2018-09-29 17:22  追梦nan  阅读(176)  评论(0编辑  收藏  举报