Add the following to .htaccess:
order allow,deny
deny from fraudster.com
allow from all
(Change fraudster.com to the domain to block)
- 0 Користувачі, які знайшли це корисним
Схожі статті
How do I turn Directory Indexing off?
Add the following to .htaccess:Options -IndexesTurn it back on:Options +Indexes
How can I setup dynamic/custom error pages?
If you have defined your own custom Error Pages using the "Define Error Pages" tool within the...
How do I do a rewrite instead of a 302 for missing pages?
Use something like this:RewriteEngine onRewriteCond %{REQUEST_FILENAME} !index.htmlRewriteRule /*...
How do I stop off-line browsers/ robot surfers?
Try the following in .htaccess:RewriteEngine OnRewriteCond %{HTTP_USER_AGENT} ^MozillaRewriteRule...
How do I prevent spam from email harvestering?
Use the following in .htaccess:RewriteEngine onRewriteCond %{HTTP_USER_AGENT} ^Bullseye.*...