I would like everybody to be able to read my robots file, even if their user agent is blocked in my .htaccess.
Neither of the RewriteRule shown below allowed SkimBot (for example) to read robots. The SkimBot request for robots resulted in a 403 Forbidden due to SetEnvIfNoCase User-Agent .*SkimBot.* bad_bot. later in htaccess.
RewriteCond %{REQUEST_URI} robots\.txt [NC]
#RewriteRule .* http://www.example.com/robots.txt [R=301,L]
RewriteRule .* http://www.example.com/robots.txt [R=200,L]
Can this be done? Any assistance is greatly appreciated.
[edited by: phranque at 4:45 pm (utc) on Jul 3, 2013]
[edit reason] please use example.com [/edit]