views:

64

answers:

2

Or even forbid indexing the whole site?

UPDATE

Is the space after : mandatory in robots.txt?

A: 

Google robots.txt

Alex DeLarge
+1  A: 

Create a robots.txt file and add the appropriate Disallow directives, such as:

User-agent: *
Disallow: /CRM
klausbyskov
How to write the `Disallow` s?
@user198729: I have updated my answer.
klausbyskov
So I can use `Disallow: /` to forbidden indexing the whole site,right?
@user198729: That is correct.
klausbyskov
Is the space after `:` mandatory?
Keep in mind that the robots.txt is case-sensitive, so if the folder is called /crm, you need to "disallow: /crm". If the server is not case-sensitive, you may need to disallow multiple versions of the path.
John Mueller