Absolute Vs Relative URL Path

dragiia

BANNED
Joined
Apr 28, 2014
Messages
124
Reaction score
116
For SEO purposes, is it better to use Absolute or Relative URLs? I've searched online and I can only find conflicting opinions. My website is almost entirely relative URLs, so I'm trying to determine whether I should go through it and change all of them.
 
I am using absolute urls for all my sites, and I advise everyone to do so.
 
What are absolute and relative URLs? Can someone explain me ?
 
<a href="http://www.yourdomain.com/page1.html">page1</a> - Absolute
<a href="page1.html">page1</a> - Relative
 
This is a hard question to answer but I believe it makes no difference atall, because a robot will crawl a url for knowing information on it. When it does, it ultimately visits the absolute url anyway.
 
You might want to check this article:
https://yoast.com/relative-urls-issues/

It pretty much explains why it is not recommended.

The only problem with that article is that it was written in 2012, things change.
 
I always use absolute path for my sites for one simple reason. If someone scrapes any of the sites it will be extra effort to make it sound like the content was theirs originally. (I know you can find/replace but most people don't bother).

It is a bigger pain if you ever migrate, but worth it.
 
^^It strengthens the crap out of your internal linking.
 
The consensus seems to be Absolute. The only downside to using Absolute is that if you change domains or something, the links no longer work, correct?
 
The consensus seems to be Absolute. The only downside to using Absolute is that if you change domains or something, the links no longer work, correct?

Correct. That is what "Find and Replace" is for.
 
Back
Top