Skip to content

Instantly share code, notes, and snippets.

@tedliou
Forked from lynt-smitka/fbclid-nginx.conf
Created July 6, 2019 17:07
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 tedliou/8407d1126e25b9a2589395cccb7fe8ac to your computer and use it in GitHub Desktop.
Save tedliou/8407d1126e25b9a2589395cccb7fe8ac to your computer and use it in GitHub Desktop.
Remove fbclid argument from the URL in Nginx
http {
...
# redirect map in http block - remove fbclid argument from the end
map $request_uri $redirect_fbclid {
"~^(.*?)([?&]fbclid=[a-zA-Z0-9_-]+)$" $1;
}
...
server {
...
# if redirect map is active, do 301 to the new url
if ( $redirect_fbclid ) {
return 301 $redirect_fbclid;
}
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment