Re: Excluding the "good" BOTS from /images folder
If you know the bot's you wan't to exclude and you are on an Apache server, you can put a
.htaccess
file in that folder with the following content.
order deny,allow
allow from all
deny from
.............
You can also use robots.txt, but I have to look up the commands since I do not remember them. And .htaccess is on a lower level and as such more secure.
|