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

5, nginx 的if 语句格式

时间:2020-07-26 01:19:27      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:write   types   oct   type   taobao   www   default   efault   name   

[root@centos7 nginx]# cat nginx.conf

worker_processes 2;
events {
    worker_connections 1024;
}

http {
    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;
    sendfile            on;
    keepalive_timeout   65;
    server {
        listen 80;
        server_name  www.etiantian.org;
        index index.html index.htm;
        if ($host = "www.etiantian.org") {
		rewrite ^/(.*)$ http://bbs.etiantian.org/$1 permanent;
		}  
   }
    
    server {
        listen 80;
        server_name  bbs.etiantian.org;
        index index.html index.htm;
        location / {
        	if ($host = ‘bbs.etiantian.org‘) {
			rewrite  ^/$    http://www.taobao.com;
			}
		}
     }
}

[root@centos7 nginx]# 

  

5, nginx 的if 语句格式

标签:write   types   oct   type   taobao   www   default   efault   name   

原文地址:https://www.cnblogs.com/k8s-pod/p/13378085.html

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