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"}';
        }
    }

專題閱讀

相關文章
相關標籤/搜索