Created
April 24, 2026 02:44
-
-
Save brandonhimpfen/79c1472de901f4c4086579dee63c4afe to your computer and use it in GitHub Desktop.
Use the following .htaccess snippet to block the Semalt.com crawler from crawling your site.
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
| ## BLOCK SEMALT ## | |
| RewriteEngine on | |
| RewriteCond %{HTTP_REFERER} semalt\.com [NC] | |
| RewriteCond %{HTTP_REFERER} ^(.*)\.semalt\.com [NC] | |
| RewriteRule .* - [F] | |
| ## END BLOCK SEMALT ## |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment