so ive been reading up on SEO- and heard that paths should include full http://www.etc

path, does this apply for image sources and video content as well?

our does it make a difference if say a video on my page is loaded via "/images/ex.mov"

does this affect load time at all either way?

thanks

link|improve this question

70% accept rate
feedback

2 Answers

up vote 0 down vote accepted

Seo doesnt matter if you use full or relative, as long as they point to the correct destination

The only way it affects load times would be that the user has to download the bytes that the absolute url provides as extra characters.

link|improve this answer
feedback

It depends whether you want an absolute path or relative path.

When loading files(such as images) from another site, you should use full, absolute urls (including http://).

Example: You want to load file http://www.example.com/images/img1.gif from http://www.example.com/page.html, you could use the path "/images/img1.gif".

however, if you want to load http://www.etc.com/images/img1.gif from http://www.example.com/page.html, you have to specify full url ("http://www.etc.com/images/img1.gif").

link|improve this answer
yeah i know why i would have to use it in that case, what im asking is does it matter for load time and seo if i use full path or abreviated for files on the same site – Gazow Jun 19 '10 at 8:12
No, since the relative paths are automatically converted into full paths. However, using the short form saves you a few bytes of data, since you dont have to type in the entire url. – digitalFresh Jun 19 '10 at 16:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.