Last active
March 13, 2024 18:56
-
-
Save lynt-smitka/b5ff2cab70443c17a214006a4d5bc48c to your computer and use it in GitHub Desktop.
Remove fbclid argument from the URL in Nginx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
} | |
... | |
} | |
} |
@marcusprice Sorry where to paste this file?
And after add it into file /sites-available/default in server configuration
Hello from the future. This is not working for me right now
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can add it into nginx.conf like this