1
vote
1answer
40 views

How to create a Google Bot friendly robot.txt?

I am using Word Press. One of the files functions.php contains function do_robots() {... which blocks Google crawling. I have replaced this function with the following: function do_robots() { ...
0
votes
0answers
13 views

Robots.txt using pattern to block some of dynamic URLs

I'm trying to exclude some of page from indexing. I have search form where you can use some of predefined parameters or user typed queries. I need to block search results that have user-provided ...
1
vote
1answer
101 views

robots.txt which folders to disallow - SEO?

I am currently writing my robots.txt file and have some trouble deciding whether I should allow or disallow some folders for SEO purposes. Here are the folders I have: /css/ (css) /js/ (javascript) ...
1
vote
0answers
62 views

Why does Googlebot keep on requesting “value.png”?

Looking through my request logs, I see various requests for /value.png: 66.249.75.199 - - [29/Jan/2013:20:49:01 +0000] "GET /robots.txt HTTP/1.1" 301 459 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; ...
0
votes
1answer
47 views

Disable googlebot fetching www

I have www redirect in .htaccess. So www.example.com gets 301 redirect to example.com But google still tries to fetch www.example.com also. Can i disable googlebot fetcing www.example.com? Eg from ...
0
votes
2answers
261 views

Google wont read my robots.txt on s3

As google is crawling our static content (stored on s3) we created a robots.txt in root directory (of the bucket).. as following User-agent: * Disallow: / Now since we wanted to remove exisiting ...
0
votes
2answers
101 views

Selectively indexing subdomains

I am working on Web application, which allows users to create their own webapp in turn. For each new webapp created by my application I Assign a new Subdomain. e.g. subdomain1.xyzdomain.com, ...
0
votes
1answer
120 views

why this wrong in robot.txt file even after specifing URL?

In robot.txt file I have put a URL /custompages/* and google bot should not crawl the pages which are matched with "/custompages/". But when I looked into webmaster, I can still see the error ...
0
votes
1answer
240 views

Is this Robots.txt file correct?

I have been getting a lot of CPU spikes recently on my server and somehow I believe it's not the real traffic or some part of it isn't real. So I want to only allow Google bots, MSN and Yahoo for now. ...
0
votes
1answer
115 views

How do I use a wildcard to block bots from indexing this?

I have the following URL format: example.com/page/m6aoeh/embed I want to block any bots from indexing any page with the url /page/*/embed I'm assuming there's some way to do wildcard URL block, but ...
0
votes
2answers
213 views

Restrict Google bot's access based on URL parameters

For example I have the following link: http://broodds.com/index.php/en/component/bet/?view=oddsdetails&bet_id=4e9dc53b96df3&odds=q1 I don't want to give access to the Google bot if the view ...
2
votes
1answer
88 views

How to disallow a certain action?

I'd like to disallow /questions/{ID}/foo but not /questions/{ID}. Is the syntax Disallow: /questions/*/foo?
4
votes
2answers
136 views

Can I prevent spiders from accessing a page with certain GET parameters?

We have a page that can optionally take an ID as a GET parameter. If an invalid ID is provided, the page throws an error and sends out a notification that someone's accessing the page incorrectly. ...
1
vote
1answer
186 views

Googlebot crawls my site even though my robots.txt file tells it not to

I've set up robots.txt to stop google crawling my site, since it's under development: # robots.txt User-agent: * Disallow: / But, the log indicates that Googlebot visits various and random parts ...
0
votes
2answers
2k views

robots.txt: user-agent: Googlebot disallow: / Google still indexing

Look at the robots.txt of this site: fr2.dk/robots.txt The content is: User-Agent: Googlebot Disallow: / That ought to tell google not to index the site, no? If true, why does the site appear in ...
1
vote
1answer
588 views

Googlebot substitutes the links of Rails app with subdomain

I have this Rails app, with domain name abc.com. I am also having a separate subdomain for Piwik stats, in this subdomain stats.abc.com. Googlebot somehow listed some of the links with my subdomain ...
2
votes
2answers
159 views

Non-indexed file (?) still found in Google

How is it possible that my page /admin/login.asp is found in Google with the query "inurl:admin/login.asp" while it isn't with the "site:www.domain.xx" query? I've this line of code in my robots.txt: ...
2
votes
2answers
259 views

How can I prevent the googlebot from crawling Ajaxified Links?

I've got a bunch of ajaxified links that do things like vote up, vote down, flag a post - standard community moderation stuff. Problem is that the googlebot crawls those links, and votes up, votes ...
3
votes
3answers
586 views

will googlebot index my site?

in my robots.txt file, I have the following line User-agent: Googlebot-Mobile Disallow: / User-agent:GoogleBot Disallow: / Sitemap: http://mydomain.com/sitemapindex.xml I know that if I put the ...
6
votes
4answers
2k views

Googlebot not respecting Robots.txt [closed]

For some reason when I check on Google Webmaster Tool's "Analyze robots.txt" to see which urls are blocked by our robots.txt file, it's not what I'm expecting. Here is a snippet from the beginning of ...
8
votes
4answers
600 views

Googlebots Ignoring robots.txt? [closed]

I have a site with the following robots.txt in the root: User-agent: * Disabled: / User-agent: Googlebot Disabled: / User-agent: Googlebot-Image Disallow: / And pages within this site are ...
8
votes
5answers
3k views

How to set up a robot.txt which only allows the default page of a site

Say I have a site on http://website.com. I would really like allowing bots to see the home page, but any other page need to blocked as it is pointless to spider. In other words http://website.com ...