Don't do that, disallow in robots.txt will NOT resolve indexing issue! What you need to use is meta robots. Noindex, nofollow. Watch this WBF on this subject:
Moz Q&A is closed.
After more than 13 years, and tens of thousands of questions, Moz Q&A closed on 12th December 2024. Whilst we’re not completely removing the content - many posts will still be possible to view - we have locked both new posts and new replies. More details here.

Posts made by DmitriiK
-
RE: Backlinks from subdomain, can it hurt ranking?
-
RE: Backlinks from subdomain, can it hurt ranking?
Hi there.
So, all the pages, from which those backlinks are coming from are non-existent anymore? have they been redirected? do they return 404s? Also, how did you find them? in Google Search Console or another tool?
So, if you found it in Google Search Console, and the original pages indeed have been removed and properly redirected, then it's just time delay by GSC. Otherwise (if those pages are crawlable), you should fix it.
Hope this makes sense.
-
RE: Pagination duplicate title and meta description
Hi there.
Here is a code solution - it adds " - Page: X" where X is a number of page. Add it to functions.php file of wordpress:
<code>php # -*- coding: utf-8 -*-/** * Plugin Name: T5 Add page number to title * Description: Adds ` | Page $number` to the page title. * License: MIT * License URI: http://www.opensource.org/licenses/mit-license.php */if(! function_exists('t5_add_page_number')){function t5_add_page_number( $s ){global $page; $paged = get_query_var('paged')? get_query_var('paged'):1;! empty ( $page )&&1< $page && $paged = $page; $paged >1&& $s .=' | '. sprintf( __('Page: %s'), $paged );return $s;} add_filter('wp_title','t5_add_page_number',100,1); add_filter('wpseo_metadesc','t5_add_page_number',100,1);}</code>
-
RE: Does google credit links from iFrames or created by Javascript, if so, is one more powerful than the other?
Hi there.
In short, Yes, iframes will pass link juice, but to the page, which is a source of iframe, not to pages, which are linked inside the iframe. And no, javascript created links are not passing rank flow.
When using iframe, basically what you are doing is you are pointing to the container on another website, and whatever is inside that container, it's hosted on that another website. That's why rank flows only to src link.
As for JS created links - they are considered hidden, devalued or obfuscated. Refer to this page on MOZ - https://moz.com/learn/seo/internal-link
Hope this helps.
-
RE: Website copying in Tweets from Twitter
Oh my!
This is surely the most ridiculous way to do it I've heard of. There are APIs, plugins and other much easier ways to do it. Do they know about it?
Here: http://bfy.tw/4AqJ - first three links.
-
RE: Website copying in Tweets from Twitter
Hi there.
I'm not sure I understand what you are saying. Are tweets copied and pasted into each page separately? Then I don't understand the "populate a twitter feed" part.
Can you explain a little more?