Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save philiparthurmoore/59841b9abb9f81a77fcda02bd7a33fab to your computer and use it in GitHub Desktop.
Save philiparthurmoore/59841b9abb9f81a77fcda02bd7a33fab to your computer and use it in GitHub Desktop.
Redirect script sample NGINX code. Make sure this location line sits above the "location /" code in your NGINX config.
location /redirect/ {
rewrite ^/redirect/(.*)$ /redirect/index.php?id=$1 last;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment