If I have the following in my .htaccess: (disallow bots from going to /dir1/dir2)
Disallow: /dir1/dir2
And I have in my .htaccess: (when accessing robots.txt, pipe them the data from dir1/dir2/robots.txt)
RewriteCond %{HTTP_HOST} ^.*domain\.com$
RewriteRule ^robots.txt$ dir1/dir2/robots.txt [NC]
Will "domain.com/robots.txt" still be served to the bot, whereas "domain.com/dir1/dir2/robots.txt" remain unreachable to it?