Hide your website…

Hide your website from the public using UA restriction in .htaccess

RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} [secret_string_here] [NC]
RewriteRule .* - [F,L]

Replace [secret_string_here] with something unique

Leave a comment