Skip to content

Instantly share code, notes, and snippets.

@br4instormer
Last active September 21, 2024 16:03
Show Gist options
  • Select an option

  • Save br4instormer/d2f6155c13560b96f4e3f68016ef3392 to your computer and use it in GitHub Desktop.

Select an option

Save br4instormer/d2f6155c13560b96f4e3f68016ef3392 to your computer and use it in GitHub Desktop.
Nginx rewrite rule. Redirect with no query if querystring is matched
server {
# replace query string is query fits
if ($request_uri ~ "limit=24&start=0") {
rewrite ^(.*) $1? permanent;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment