Block Semalt.com Crawler

Use the following .htaccess snippet to block the Semalt.com crawler from crawling your site.

Block Semalt.com Crawler
Photo by Markus Winkler / Unsplash

Use the following .htaccess snippet to block the Semalt.com crawler from crawling your site.

## BLOCK SEMALT ##
RewriteEngine on
RewriteCond %{HTTP_REFERER} semalt\.com [NC]
RewriteCond %{HTTP_REFERER} ^(.*)\.semalt\.com [NC]
RewriteRule .* - [F]
## END BLOCK SEMALT ##