Skip to content

Instantly share code, notes, and snippets.

@edinsoncs
Forked from lynt-smitka/fbclid.htaccess
Created November 21, 2019 16:14
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 edinsoncs/722a32ac25786f61a09da993948fef59 to your computer and use it in GitHub Desktop.
Save edinsoncs/722a32ac25786f61a09da993948fef59 to your computer and use it in GitHub Desktop.
Remove fbclid argument from the URL in .htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{QUERY_STRING} ^(.*?)(&?fbclid=[a-zA-Z0-9_-]+)$
RewriteRule ^(.*)$ /$1?%1 [L,NE,R=301]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment