Skip to content

Instantly share code, notes, and snippets.

@Lax
Created September 12, 2014 03:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lax/0001edfd74f20e0e72a4 to your computer and use it in GitHub Desktop.
Save Lax/0001edfd74f20e0e72a4 to your computer and use it in GitHub Desktop.
(nginx.conf) rewrite by lua, for SEO, etc.
rewrite_by_lua '
REDIR_R = {
["/r/1"] = "/d/1",
["/r/2"] = "/d/2",
}
if REDIR_R[ngx.var.uri] then
return ngx.redirect(REDIR_R[ngx.var.uri]);
end
';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment