![]() |
Preventing your e-mail that you placed on your site from being found by spammers is very hard. Some have even taken their e-mail addresses off their sites and replaced them with contact forms to prevent this. Here is a neat .htaccess method to help put a stop to this. This will stop many of the 'bots' or e-mail collecting softwares from sucking e-mail addresses from web pages and adding them to their spam lists. However this will not work 100% of the time, as some do not identify themselves, but its a good start.
RewriteCond %{HTTP_USER_AGENT} Wget [OR]
RewriteCond %{HTTP_USER_AGENT} CherryPickerSE [OR]
RewriteCond %{HTTP_USER_AGENT} CherryPickerElite [OR]
RewriteCond %{HTTP_USER_AGENT} EmailCollector [OR]
RewriteCond %{HTTP_USER_AGENT} EmailSiphon [OR]
RewriteCond %{HTTP_USER_AGENT} EmailWolf [OR]
RewriteCond %{HTTP_USER_AGENT} ExtractorPro
RewriteRule ^.*$ X.html [L]
Related Articles
- Avoiding SpamUnless youve found a way of living without the internet, youve undoubtedly had an experience with spam. There are few things as irritating as junk mail clogging up your inbox. So how can one best go about preventing spam?
- Stop Right Mouse ClicksStop people from getting at your source by right clicking on your web page. Sounds good, but doesnt protect you totally, you can never fully protect your work, but it will make it harder.
- How To Beat SpamTips and tricks on how to avoid spam.
- How to Make Background Music in JSMake a background music with stop button useing jscript.
- 10 Ways to Get Less Search Engine TrafficSo, you got yourself a new website set up and you want to be at the bottom of the shower head search results. This may not get you banned altogether, but it will at least get your site deranked enough that new visitors will stop bothering you.
- How SEO Works for Your BusinessAs you put up a business, you definitely do not stop there; you certainly want your business to make a sale or sales in order not to put your money into waste. In order for your business to gain success, you have to get use into the popular internet marketing.
- EtiquetteOkay, these discussion list people are a weird group. For some reason, they dont like to wade through piles of sales pitches for unrelated (or even related) products or websites. They call this spam. And they can get very upset with people that send spam. It giv...
- Domain Name SearchWhen you want to check who registered a particular domain name, you can perform a WHOIS lookup. This will allow you to lookup all data available in the pubic domain records. You can find the owner and thedetails of the domain.
- Stop Annoying People With Your NewsletterI read a lot of newsletters. Some are great and some are not so great. I put together this article to highlight the five mistakes I see most often in other peoples newsletters.
- Google SandboxLots of people have heard about the famous Google Sandbox but not everyone understands exactly what it is. This tutorial will explain it all.

