I think I may have stopped the Search Engines from crawling my whole site. I'm hoping someone can help me out. I would really appreciate it.
If structured my Robots.txt file as follows --
CODE
User-agent: *
Disallow: /
http://www.CompanyDomain.com/index.php?p=date&CatalogSetView=Text
http://www.CompanyDomain.com/index.php?p=name&CatalogSetView=Text
http://www.CompanyDomain.com/index.php?p=price_desc&CatalogSetView=Text
Disallow: /
http://www.CompanyDomain.com/index.php?p=date&CatalogSetView=Text
http://www.CompanyDomain.com/index.php?p=name&CatalogSetView=Text
http://www.CompanyDomain.com/index.php?p=price_desc&CatalogSetView=Text
Which of the following will it do? --
1) Disallow all three URL's or
2) Disallow the whole website.
If I want to disallow all three URL's, can I use the above shortcut or do I have to include the Disallow: field on every line like this --
CODE
User-agent: *
Disallow: /http://www.CompanyDomain.com/index.php?p=date&CatalogSetView=Text
Disallow: /http://www.CompanyDomain.com/index.php?p=name&CatalogSetView=Text
Disallow: /http://www.CompanyDomain.com/index.php?p=price_desc&CatalogSetView=Text
Disallow: /http://www.CompanyDomain.com/index.php?p=date&CatalogSetView=Text
Disallow: /http://www.CompanyDomain.com/index.php?p=name&CatalogSetView=Text
Disallow: /http://www.CompanyDomain.com/index.php?p=price_desc&CatalogSetView=Text
Thanks for the help!










