I have an online store and I submitted a site map for indexing. More pages get the index and google search console indicate no index pages list. I check robot.txt and it has no issue. Robot Meta value is also ok. I want to index that no index pages. How I can solve this?
Hello @ryan stafford_s ,
Normally you have to do this manually if your website is small enough but in the case of an e-commerce site built on Magento, there usually are many products, which means many URLs and that makes creating a sitemap manually impossible. Fortunately, Magento has a built-in functionality of generating a sitemap. If you do not know it yet, this guide is gonna help you create and submit a sitemap for your Magento store.
Step 1: Generate the sitemap In Magento 1:
Step 2: Submit your sitemap to Google
/media/s4d71280645299/sitemaps/sitemap.xml
It’s done! You have successfully created a sitemap for your Magento website. Please remember this does NOT guarantee that all of your URLs will be indexed by Google, but rather makes the index process faster and easier.
--
If my answer is useful, please Accept as Solution & give Kudos
We have multiple criteria for no-index. Here are few example might be helpful for you.
1) In case if you want no-index for particular product. In Magento admin, when editing a product go to the tab design and add the following to custom layout:
<reference name="head"> <action method="setRobots"><meta>NOINDEX,NOFOLLOW</meta></action> </reference>
2) If you want to no-index checkout Page: You have to add following code in checkout.xml
<checkout_cart_index> <reference name="head"> <action method="setRobots"><value>NOINDEX,FOLLOW</value></action> </reference> </checkout_cart_index>
Similarly you can do for other pages.
OR if you want to stop indexing whole website this link will help you.
Thanks
--
If my answer is useful, please Accept as Solution & give Kudos
I did it, after that in search console some error pages sown Submitted URL marked ‘noindex’. I want to fix that. can you give me a solution?