晨风

-------------------- 业精于勤,荒于嬉;行成于思,毁于随

导航

Nginx以xxx开头的转发

Posted on 2021-04-20 11:44  shenyixin  阅读(1042)  评论(0编辑  收藏  举报
location / {
     root   html;
     index  index.html index.htm;
     if ( $request_uri ~ "^\/xxx")  {
         proxy_pass   http://www.baidu.com;
     }
}