Quote:
|
Will using Absolute URLs help with my Google Ranking? This has been debated before and the general response was that Google doesn't care whether it is absolute or relative.
|
Nope.
There is ABSOLUTELY NO difference where the server performance is concerned, user agents will "normalise" relative references before requesting the document URI.
If you had a pages with thousands of images on it, using absolute addressing for the image URIs might save a few microseconds of client processing time.
Be aware that using the ../ syntax can mean different things depending on how, where and in what document it is used in.
Each ../ is normalised as referencing the folder above the current location. If all documents are in the root directory it will be ignored because HTML cannot traverse folders above the root, but using ../filename.ext from a subfolder, say "/aboutus/" will actually point to a document located in the root directory. When you go another folder down, "/aboutus/company/", ../filename.ext will be referencing a resource located in the "/aboutus/" folder.
The safest way is to use "root relative addressing" and start all URIs with a forward slash and qualify the full path to the resource.
__________________
Chris. ->> Please login or register to view this content. Registration is FREE <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
|