13. Nginx Rewrite

flag 说明
last nginx重定向location区段,能够直接返回200状态码
break nginx重定向资源路径,能够直接返回200状态码
redirect 返回302临时重定向
permanent 返回301永久重定向
  server {
        listen 6935;
        server_name www.siguoya.name;
        root /usr/local/nginx/1.12.1/html;
        # 如果没有/usr/local/nginx/1.12.1/html/test目录的话,就直接返回404
        location /break {
            rewrite /break /test break;
        }
        # 重定向/last区段的请求到/test区段
        location /last {
            rewrite /last /test last;
        }
        #302
        location /redirect {
            rewrite /redirect /test redirect;
        }
        #301
        location /permanent {
            rewrite /permanent /test permanent;
        }
        location /test {
            default_type application/json;
            return 200 '{"status":"success"}';
        }
    }

专题阅读

  • 1. Nginx的优点
  • 2. Nginx的安装与开机自启
  • 3. Nginx目录和配置语法
  • 4. Nginx模块
  • 5. Nginx静态资源处理
  • 6. Nginx浏览器缓存原理
  • 7. Nginx资源的跨域访问
  • 8. Nginx资源的防盗链
  • 9. Nginx代理
  • 10. Nginx负载均衡
  • 11. Nginx缓存
  • 12. Nginx动静分离
  • 13. Nginx Rewrite
  • 14. Nginx Secure Link
  • 15. Nginx Geo
  • 16. Nginx HTTPS服务
  • 17. Nginx与Lua开发
  • 18. Nginx与Lua灰度发布
  • 19. Nginx常见错误
  • 20. Nginx性能优化
  • 21. Nginx安全管理

你可能感兴趣的:(13. Nginx Rewrite)