Operations 2 min read

Nginx Rewrite vs. Location: The Hidden URL Normalization Trap

This article explains how Nginx normalizes incoming URLs for location matching but not for rewrite targets, causing unexpected mismatches when extra slashes appear, and shows how to avoid the pitfall with proper configuration.

MaGe Linux Operations
MaGe Linux Operations
MaGe Linux Operations
Nginx Rewrite vs. Location: The Hidden URL Normalization Trap

When adjusting Nginx rules, I discovered that the location directive matches a normalized URL, while the URL generated by an internal rewrite is not re‑normalized, leading to mismatches.

For example, the following configuration adds an extra slash in the rewrite:

if ($request_uri ~ "/api") {
    rewrite (.*) /newapi/$1;    # extra slash
}

location /newapi/api {
    set $testapi 1;
}

location /newapi {
    # ...
}

When accessing /api, the request is rewritten to /newapi/api, but because the rewritten URL contains a double slash, the location /newapi/api block is not matched. Directly requesting /newapi//api does match.

The root cause is that the original request URL is normalized (collapsing multiple slashes, resolving “.” and “..”), whereas the URL produced by rewrite is used as‑is.

See the official Nginx documentation for details: http://nginx.org/en/docs/http/ngx_http_core_module.html

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

locationurl-normalizationrewriteserver-configuration
MaGe Linux Operations
Written by

MaGe Linux Operations

Founded in 2009, MaGe Education is a top Chinese high‑end IT training brand. Its graduates earn 12K+ RMB salaries, and the school has trained tens of thousands of students. It offers high‑pay courses in Linux cloud operations, Python full‑stack, automation, data analysis, AI, and Go high‑concurrency architecture. Thanks to quality courses and a solid reputation, it has talent partnerships with numerous internet firms.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.