Hi. Well, they do not consolidate, that's for sure. However, I have a question then: so, if, let's say i have a to site.com/ and site.com/es/ for Spain and then somebody links to site.com/es/, wouldn't this increase DA of the whole domain, which is site.com?
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.

Best posts made by DmitriiK
-
RE: How does link juice flow through hreflang?
-
RE: Consolidating Multiple Domains into A Single Domain
Hi there.
As always, it depends. Are these websites related, all good quality, without spammy backlink profile or any manual actions? - If so, then yes, it would be better to consolidate. However, if each of those websites is separate entity which is known, well received and kinda lives on it's own, then it might be better to leave them separate. (Another option would be to put them under the same domain, but on different subdomains to make management easier)
Cheers
-
RE: After HTTPS upgrade, should I change all internal links, or a general 301 redirect is better?
Hi there.
So, you have all your links absolute? not relative? Gotta be painful to manage..
Well, anyway, to answer your question - the only bad part about not changing links to https would be that extra redirect. If your servers are good, fast and very reliable, nobody would probably even notice it. I would check loading speeds though, especially for mobiles.
Personally, I would change all links to relative and never worry about stuff like this. If you want to keep them absolute, then yes, I recommend changing them all. Just for clean conscious sake
About find-replace. That would depend on how your website is built. I assume you're talking about wordpress? Then yes, you should be able to. As long as you know where to search.
Cheers.
-
RE: Is there any tool available to check which website using Lazy Load?
Hi there.
I don't think there is an actual tool which will tell you that, but you can see it yourself while scrolling on a page - you'll see images loading as you scroll. Also you can use browser's developer console, specifically network tab. You should see images not being loaded until you scroll to them.
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>