Last active
          August 12, 2025 19:06 
        
      - 
      
 - 
        
Save lynt-smitka/b5ff2cab70443c17a214006a4d5bc48c to your computer and use it in GitHub Desktop.  
    Remove fbclid argument from the URL in Nginx
  
        
  
    
      This file contains hidden or 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; | |
| } | |
| ... | |
| } | |
| } | 
Thank you.
Thanks works.
@lynt-smitka Sorry
Where to paste this file?
@marcusprice Sorry where to paste this file?
@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
  
            

works