nginx禁止ip直接访问

编辑一个noIp.conf放到虚拟目录中

server {
  listen 80 default;
  server_name _;
  rewrite ^ http://www.xxxx.com/;
  }

其中 www.xxxx.com是你想跳转的网站。

意思是,如果用户通过ip直接访问,就给跳转到对应的网站。

posted @ 2015-02-28 12:26  KoMiles  阅读(1589)  评论(0编辑  收藏  举报