- [root@iZ7xvavc793m36sybr4bw4Z ~]# cd /www/server/panel/vhost/nginx/redirect/plan.liheng.work
- [root@iZ7xvavc793m36sybr4bw4Z plan.liheng.work]# ls
- 6926e8d117e4da7d001f69b2261e33cc_plan.liheng.work.conf
- [root@iZ7xvavc793m36sybr4bw4Z plan.liheng.work]# cat 6926e8d117e4da7d001f69b2261e33cc_plan.liheng.work.conf
- #REWRITE-START
- if ($host ~ '^plan.liheng.work'){
- return 301 http://home.liheng.work$request_uri;
- }
- #REWRITE-END[root@iZ7xvavc793m36sybr4bw4Z plan.liheng.work]#
复制代码
重定向规则在nginx子配置里面,可以看到
主配置的引用部分
- #引用重定向规则,注释后配置的重定向代理将无效
- include /www/server/panel/vhost/nginx/redirect/plan.liheng.work/*.conf;
复制代码 |