noindex

How to Add noindex for specific page in Shopify store

给你一囗甜甜゛ 提交于 2020-01-17 01:41:08
问题 I have a Shopify store and I want to block search engines to index some products pages, I found this solution https://help.shopify.com/en/manual/promoting-marketing/seo/hide-a-page-from-search-engines?utm_source=gurucopy&utm_medium=link&utm_campaign=Gurus#undefined {% if handle contains 'page-handle-you-want-to-exclude' %} <meta name="robots" content="noindex"> {% endif %} but I don't how I should make changes to block my pages below my page link mysite.com/products/product-26 mysite.com

How do I stop Wordpress from inserting a noindex meta tag?

梦想与她 提交于 2019-12-29 08:24:15
问题 I'm trying to get my website to be indexed by search engines. According to this, something from Wordpress is injecting a meta tag that's preventing search engines from crawling my site: https://aw-snap.info/file-viewer/?protocol=secure&tgt=chrispokey.com I'm beginning to think it's something to do with the wp_head(); function. What next steps can I take to remove the noindex tag that's somehow getting inserted in my website's header section? Thanks! <?php if ( is_singular() ) wp_enqueue

X Robots Tag noindex specific page

耗尽温柔 提交于 2019-12-24 08:46:17
问题 I have a Privacy Policy page on my website www.domain/privacy-policy/ which I would like to noindex with the X Robots Tag. I have tried the following code but it does not match # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / ## Redirect HTTP to HTTPS RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L]

Controlling Search Engine Index Removals

余生长醉 提交于 2019-12-13 04:31:34
问题 My site has some particular pages that are: Already indexed in search engines, but I want to remove them from the indexes. Numerous, as they are dynamic (based on query string). A bit "heavy." (An overzealous bot can strain the server more than I'd like.) Because of #2, I'm just going to let them slowly get removed naturally, but I need to settle on a plan. I started out by doing the following: Bots: Abort execution using user-agent detection in the application, and send a basically blank

robots.txt : how to disallow subfolders of dynamic folder

[亡魂溺海] 提交于 2019-12-10 11:15:45
问题 I have urls like these: /products/:product_id/deals/new /products/:product_id/deals/index I'd like to disallow the "deals" folder in my robots.txt file. [Edit] I'd like to disallow this folder for Google, Yahoo and Bing Bots. Does anyone know if these bots support wildcard character and so would support the following rule? Disallow: /products/*/deals Also... Do you have any really good tuto on robots.txt rules? As I didn't manage to find a "really" good one I could use one... And one last

X-Robots noindex specific page in .htaccess

这一生的挚爱 提交于 2019-12-10 04:35:26
问题 Can I 'noindex, follow' a specific page using x robots in .htaccess? I've found some instructions for noindexing types of files, but I can't find instruction to noindex a single page, and what I have tried so far hasn't worked. This is the page I'm looking to noindex: http://www.examplesite.com.au/index.php?route=news/headlines This is what I have tried so far: <FilesMatch "/index.php?route=news/headlines$"> Header set X-Robots-Tag "noindex, follow" </FilesMatch> Thanks for your time. 回答1: It

robots.txt : how to disallow subfolders of dynamic folder

我的梦境 提交于 2019-12-06 12:27:53
I have urls like these: /products/:product_id/deals/new /products/:product_id/deals/index I'd like to disallow the "deals" folder in my robots.txt file. [Edit] I'd like to disallow this folder for Google, Yahoo and Bing Bots. Does anyone know if these bots support wildcard character and so would support the following rule? Disallow: /products/*/deals Also... Do you have any really good tuto on robots.txt rules? As I didn't manage to find a "really" good one I could use one... And one last question: Is the robots.txt the best way to handle this? Or should I better use the "noindex" meta? Thx

X-Robots noindex specific page in .htaccess

◇◆丶佛笑我妖孽 提交于 2019-12-05 09:05:28
Can I 'noindex, follow' a specific page using x robots in .htaccess? I've found some instructions for noindexing types of files, but I can't find instruction to noindex a single page, and what I have tried so far hasn't worked. This is the page I'm looking to noindex: http://www.examplesite.com.au/index.php?route=news/headlines This is what I have tried so far: <FilesMatch "/index.php?route=news/headlines$"> Header set X-Robots-Tag "noindex, follow" </FilesMatch> Thanks for your time. It seems to be impossible to match the request parameters from within a .htaccess file. Here is a list of what

Precedence of X-Robots-Tag header vs robots meta tag

做~自己de王妃 提交于 2019-12-04 17:50:59
问题 I've placed the following Header in my vhost config: Header set X-Robots-Tag "noindex, nofollow" The goal here is to just disable search engines from indexing my testing environment. The site is Wordpress and there is a plugin installed to manage per-page the meta robots settings. For example: <meta name="robots" content="index, follow" /> So my question is, which directive will take precedence over the other since both are being set on every page? 回答1: I am not sure if a definitive answer

Precedence of X-Robots-Tag header vs robots meta tag

被刻印的时光 ゝ 提交于 2019-12-03 11:30:39
I've placed the following Header in my vhost config: Header set X-Robots-Tag "noindex, nofollow" The goal here is to just disable search engines from indexing my testing environment. The site is Wordpress and there is a plugin installed to manage per-page the meta robots settings. For example: <meta name="robots" content="index, follow" /> So my question is, which directive will take precedence over the other since both are being set on every page? d-stroyer I am not sure if a definitive answer can be given to the question, as the behavior may be implementation-dependent (on the robot side).