码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx Rewrite域名及资源重定向!

时间:2019-09-14 18:41:29      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:bsp   配置文件   form   keepaliv   ror   affinity   listen   not   set   

 

第一步:搭建Nginx服务

第二步:修改主配置文件

[root@ns2 ~]# vim /usr/local/nginx/conf/nginx.conf
user  nginx nginx;
worker_processes  2;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
error_log  logs/error.log  info;
worker_cpu_affinity 00000001 00000010;
pid        logs/nginx.pid;


events {
   use epoll;
    worker_connections  10240;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    log_format  main  $remote_addr - $remote_user [$time_local] "$request" 
                      $status $body_bytes_sent "$http_referer" 
                      "$http_user_agent" "$http_x_forwarded_for";

    access_log  logs/access.log  main;

    sendfile        on;

    keepalive_timeout  65;

   server {
        listen       80;
        server_name  www.source.com;

charset utf-8;


access_log logs/source.com.access.log main;


location / {
        root html;
        index index.html index.htm;
      if ($http_user_agent ~ MSIE) {
           rewrite ^(.*)$ /msie/$1 break;
         }
     }
 location ~* \.(js|css)$ {
     expires 1h;
}



location ~* \.(jpg|gif|png|swf)$ {
      #*.amber.com amber.com相当于公司域名
     expires 1d;
     root html;
     valid_referers none blocked *.source.com source.com;
   if ($invalid_referer) {
        rewrite ^/ http://www.source.com/error.txt;
    }
}


      error_page 500 502 503 504 /50x.html;
   location = /50x.html {
    root html;
}
}


}

 

[root@ns2 ~]# cd /usr/local/nginx/html/msie/

[root@ns2 msie]# vim a.html

<h1>11111111</h1>

[root@ns2 msie]# ls
a.html

第三步:修改真机hosts文件(此处用于防盗链)

192.168.200.100 www.source.com
192.168.200.105 www.sttal.com

技术图片

 

Nginx Rewrite域名及资源重定向!

标签:bsp   配置文件   form   keepaliv   ror   affinity   listen   not   set   

原文地址:https://www.cnblogs.com/cxm123123form/p/11519685.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!