Hi,
I have some problem getting a description for a public Apex application homepage in Google. Right now, I get "A description for this result is not available because of this site's robots.txt – learn more.". We disabled Googlebots when not on session 0 to avoid being hit too many times and slowing the server down. Here's the content of robots.txt :
User-agent: *
Allow: /f?p=105:*:0
Allow: /pls/htmldb/f?p=105:*:0
Disallow: /
So in Google we see only this link :
- my-domain.com - A description for this result is not available because of this site's robots.txt – learn more.
my-domain.com redirects to the actual homepage (my-domain.com/pls/htmldb/f?p=105:34:0) using Apache RewriteRule :
RewriteRule ^/$ /pls/htmldb/f?p=105:34:0 [NS,R,L]
How can I change the display of Google search results to get the actual homepage with a description ?
--
Patrick