Code:
<Files *.txt>
Order Deny,Allow
Deny from all
</Files>
User-agent: *
Disallow: /index.php?main_page=login
Disallow: /admin
Disallow: /account.php
Disallow: /advanced_search.php
Disallow: /checkout_shipping.php
Disallow: /create_account.php
Disallow: /login.php
Disallow: /login.php
Disallow: /password_forgotten.php
Disallow: /popup_image.php
Disallow: /shopping_cart.php
Disallow: /product_reviews_write.php
Disallow: /cookie_usage.php
Disallow: /Googlebot-Image
Disallow: /default.ida
Disallow: /getout.php
This does not belong there... it is server side coding. You would not wish to use it anyhow as then the search engines could not grab your robots.txt
<Files *.txt>
Order Deny,Allow
Deny from all
</Files>
Take the following out... as they are advertising your sensitive areas to hackers and would not be indexed anyhow.
Disallow: /admin
Disallow: /cookie_usage.php
Disallow: /default.ida
Disallow: /getout.php
If you are looking to disallow Google Imges, the above syntax will do nothing.... Goes like this...
Code:
User-agent: Googlebot-Image
Disallow: /
You have this in here twice
Bear in mind that a robots.txt DOES NOT prevent indexing, only crawling. To prevent indexing you must use a noindex,nofollow in the pages with your robots skip function.
~Melanie