Magento – Magento 1.9 robots.txt seo

magento-1.9robots.txtseo

I think i have a problem with robots.txt in magento 1.9.3.4

In Search Console at Index Status of https version i see this:
enter image description here

Is it a issue? and if yes, how can i solve it?

http:
enter image description here

Robots.txt

# Website Sitemap
Sitemap: https://domain/sitemap.xml
 
# Crawlers Setup
User-agent: *
#Crawl-delay: 10
 
# Allowable Index
# Mind that Allow is not an official standard
Allow: /*?p=
Allow: /index.php/blog/
Allow: /catalog/seo_sitemap/category/
# Allow: /catalogsearch/result/
Allow: /media/catalog/
 
# Directories
Disallow: /404/
Disallow: /app/
 
Disallow: /cgi-bin/
Disallow: /downloader/
 
Disallow: /errors/
Disallow: /includes/
Disallow: /js/
Disallow: /lib/
Disallow: /magento/
# Disallow: /media/
Disallow: /media/captcha/
# Disallow: /media/catalog/
#Disallow: /media/css/
#Disallow: /media/css_secure/
Disallow: /media/customer/
Disallow: /media/dhl/
Disallow: /media/downloadable/
Disallow: /media/import/
#Disallow: /media/js/
Disallow: /media/pdf/
Disallow: /media/sales/
Disallow: /media/tmp/
Disallow: /media/wysiwyg/
Disallow: /media/xmlconnect/
Disallow: /pkginfo/
Disallow: /report/
Disallow: /scripts/
Disallow: /shell/
#Disallow: /skin/
Disallow: /stats/
Disallow: /var/
 
# Paths (clean URLs)
Disallow: /index.php/
Disallow: /catalog/product_compare/
Disallow: /catalog/category/view/
Disallow: /catalog/product/view/
Disallow: /catalog/product/gallery/
Disallow: /catalogsearch/
Disallow: /checkout/
Disallow: /control/
Disallow: /contacts/
Disallow: /customer/
Disallow: /customize/
Disallow: /newsletter/
Disallow: /poll/
Disallow: /review/
Disallow: /sendfriend/
Disallow: /tag/
Disallow: /wishlist/
 
# Files
Disallow: /cron.php
Disallow: /cron.sh
Disallow: /error_log
Disallow: /install.php
Disallow: /LICENSE.html
Disallow: /LICENSE.txt
Disallow: /LICENSE_AFL.txt
Disallow: /STATUS.txt
Disallow: /get.php # Magento 1.5+
 
# Paths (no clean URLs)
#Disallow: /*.js$
#Disallow: /*.css$
Disallow: /*.php$
Disallow: /*?SID=
Disallow: /rss*
Disallow: /*PHPSESSID

Best Answer

this line will block crawlers to get your images from cms pages and blocks: Disallow: /media/wysiwyg/

and if you have a page the search terms page and/or a cloud of most search terms this will also cause many blocks to crawlers: Disallow: /catalogsearch/

All the rest looks fine, about the url, it's fine, just check that your product and category pages have SEO friendly urls (something like my-nice-product.html instead of .../catalog/product/view/... or /women.html instead of .../catalog/category/view/...)

Related Topic