iEntry 10th Anniversary Forum Rules Search
WebProWorld
Register FAQ Calendar Mark Forums Read
Google Discussion Forum Google Discussion forum is for topics specifically related to Google. There is a subforum dedicated to AdSense/AdWords subjects.

Share Thread: & Tags

Share Thread:

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 04-21-2008, 02:15 PM
WebProWorld New Member
 
Join Date: Jan 2008
Posts: 11
saulman RepRank 0
Default Internal Links

Hi,

I have a question regarding the seo of my site:

Psychology

Currently some of my internal links are like this:
<a href="psychodynamic.html">Psychodynamic</a>

Others are like this:

<a href="http://www.simplypsychology.pwp.blueyonder.co.uk/memory.html">Memory</a>

In terms of seo and link juice will including the full domain make any difference?
Reply With Quote
  #2 (permalink)  
Old 04-22-2008, 10:34 AM
wige's Avatar
Moderator
WebProWorld Moderator
 
Join Date: Jun 2006
Location: United States
Posts: 2,661
wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9
Default Re: Internal Links

No, it should not make any difference. The search engine bots are, in general, smart enough to add the domain name to truncated links, and figure out which links are internal or external.
__________________
The best way to learn anything, is to question everything.
Reply With Quote
  #3 (permalink)  
Old 04-22-2008, 04:27 PM
seiretto's Avatar
WebProWorld Pro
 
Join Date: Nov 2006
Location: Huddersfield, Yorkshire, UK
Posts: 155
seiretto RepRank 0
Default Re: Internal Links

For the most part I agree with wige, but google prefer you to use one or the other throughout your site.

But more importantly, if you are attempting to market your website get it properly hosted with your own domain name and stop promoting your network provider (blueyonder) for free!
__________________
Experienced UK website host hosting sites for over a decade; Need to host mutliple domains and websites check out our Reseller hosting or try our Fully managed servers
Reply With Quote
  #4 (permalink)  
Old 04-22-2008, 11:31 PM
Peter (IMC)'s Avatar
WebProWorld MVP
WebProWorld MVP
 
Join Date: Dec 2003
Posts: 1,485
Peter (IMC) RepRank 4Peter (IMC) RepRank 4Peter (IMC) RepRank 4Peter (IMC) RepRank 4
Default Re: Internal Links

the only thing I would advise is to use absolute links in stead of relative links. It makes it a lot easier for search engines to get the link structure right.

Absolute links are links that start with a /

so in stead of <a href="index.html"> you should link to <a href="/">

and in stead of <a href="some-page.html"> you should link to <a href="/some-page.html">

or in stead of <a href="some-other-page.html"> in the directory /a-directory/ you should link to <a href="/a-directory/some-other-page.html">
__________________
FREE SEO ! Really? YES! All you have to do is implement it!
Follow me on Twitter PeterIMC
Reply With Quote
  #5 (permalink)  
Old 04-23-2008, 03:17 AM
seiretto's Avatar
WebProWorld Pro
 
Join Date: Nov 2006
Location: Huddersfield, Yorkshire, UK
Posts: 155
seiretto RepRank 0
Default Re: Internal Links

Hi Peter,

Your suggestion, which I am not saying is right or wrong, requires the use of the HTML BASE tag:
Links in HTML documents

eg. Without it your final recommendation would link to:
www.the--domain.com/a-directory/a-directory/some-other-page.html
which would return an 404 error! Oh no.

No worries use this each time you edit a page to ensure you have no broken links:
Find broken links on your site with Xenu's Link Sleuth (TM)

Its free and will check all your links on your site within a few minutes.
__________________
Experienced UK website host hosting sites for over a decade; Need to host mutliple domains and websites check out our Reseller hosting or try our Fully managed servers

Last edited by seiretto; 04-23-2008 at 03:20 AM.
Reply With Quote
  #6 (permalink)  
Old 04-23-2008, 06:52 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default Re: Internal Links

Yes it does matter you wan to use either relative or absolute URLs, not both on the same website.

Most importantly try to use absolute URLs in the navigation. I know sometimes when people code using a dev server using relative URLs is a necessary evil.
Reply With Quote
  #7 (permalink)  
Old 04-23-2008, 09:42 PM
Peter (IMC)'s Avatar
WebProWorld MVP
WebProWorld MVP
 
Join Date: Dec 2003
Posts: 1,485
Peter (IMC) RepRank 4Peter (IMC) RepRank 4Peter (IMC) RepRank 4Peter (IMC) RepRank 4
Default Re: Internal Links

Quote:
Originally Posted by seiretto View Post
Hi Peter,

Your suggestion, which I am not saying is right or wrong, requires the use of the HTML BASE tag:
Links in HTML documents

eg. Without it your final recommendation would link to:
www.the--domain.com/a-directory/a-directory/some-other-page.html
which would return an 404 error! Oh no.

No worries use this each time you edit a page to ensure you have no broken links:
Find broken links on your site with Xenu's Link Sleuth (TM)

Its free and will check all your links on your site within a few minutes.
404 errors? I don't see how my suggestion would result in broken links. I use it always, never had any problems.

Xenu is a standard software to use when we bring an optimized website online.
__________________
FREE SEO ! Really? YES! All you have to do is implement it!
Follow me on Twitter PeterIMC
Reply With Quote
  #8 (permalink)  
Old 04-24-2008, 04:24 AM
seiretto's Avatar
WebProWorld Pro
 
Join Date: Nov 2006
Location: Huddersfield, Yorkshire, UK
Posts: 155
seiretto RepRank 0
Default Re: Internal Links

Peter,

You got me thinking about this in case I was wrong.... so I checked your code on default Apache and IIS web servers and it results in 404 errors, unless you used for example "/index.html" in a sub-folder then this links to the parent folder! NOT the required outcome at all. And Xenu would not see this as an error, but would result in the use of keywords linking to irrelevant content.

Anyhow, if we go back to the actual topic if relates to relative or absolute links.

As I said according Google Googlebot prefers absolute links:
URLs not followed

Absolute links are defined as:
http://www.my--company.com/one.html#anchor-one
And relative as:
./one.html#anchor-one or one.html#anchor-one
see the middle of this page:
Links in HTML documents

So to conclude it is best practice to use absolute links in the form of:
Code:
<a title="this page is about..." href="http://www.the--domain.com/folder-name/file-name.html">Relevant words linking to page</a>
Anyone else concur, or disagree....
__________________
Experienced UK website host hosting sites for over a decade; Need to host mutliple domains and websites check out our Reseller hosting or try our Fully managed servers
Reply With Quote
  #9 (permalink)  
Old 04-24-2008, 04:30 AM
subhzash's Avatar
WebProWorld Veteran
 
Join Date: Apr 2007
Posts: 346
subhzash RepRank 1
Smile Re: Internal Links

Quote:
Originally Posted by saulman View Post
Hi,

I have a question regarding the seo of my site:

Psychology

Currently some of my internal links are like this:
<a href="psychodynamic.html">Psychodynamic</a>

Others are like this:

<a href="http://www.simplypsychology.pwp.blueyonder.co.uk/memory.html">Memory</a>

In terms of seo and link juice will including the full domain make any difference?

I use absolute links for all my site. I believe absolute linking is the best and widely adopted method
Reply With Quote
  #10 (permalink)  
Old 04-24-2008, 06:27 PM
Peter (IMC)'s Avatar
WebProWorld MVP
WebProWorld MVP
 
Join Date: Dec 2003
Posts: 1,485
Peter (IMC) RepRank 4Peter (IMC) RepRank 4Peter (IMC) RepRank 4Peter (IMC) RepRank 4
Default Re: Internal Links

Quote:
Originally Posted by seiretto View Post
Peter,

You got me thinking about this in case I was wrong.... so I checked your code on default Apache and IIS web servers and it results in 404 errors, unless you used for example "/index.html" in a sub-folder then this links to the parent folder! NOT the required outcome at all. And Xenu would not see this as an error, but would result in the use of keywords linking to irrelevant content.

Anyhow, if we go back to the actual topic if relates to relative or absolute links.

As I said according Google Googlebot prefers absolute links:
URLs not followed

Absolute links are defined as:
http://www.my--company.com/one.html#anchor-one
And relative as:
./one.html#anchor-one or one.html#anchor-one
see the middle of this page:
Links in HTML documents

So to conclude it is best practice to use absolute links in the form of:
Code:
<a title="this page is about..." href="http://www.the--domain.com/folder-name/file-name.html">Relevant words linking to page</a>
Anyone else concur, or disagree....
The only thing I can conclude from your tests is that you forgot to add http:// to those links that include the domain name.

/

/google-discussion-forum/68651-internal-links.html

These links work just fine, don't they?
__________________
FREE SEO ! Really? YES! All you have to do is implement it!
Follow me on Twitter PeterIMC
Reply With Quote
Reply

  WebProWorld > Search Engines > Google Discussion Forum

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Internal Links Costa Boy Google Discussion Forum 2 11-16-2006 08:44 AM
internal links on google.. Amitkrathi Google Discussion Forum 1 05-04-2006 08:00 AM
Internal Links on own Map page flanok Search Engine Optimization Forum 2 02-11-2006 05:51 PM
backward links are all internal links? MarketThoughts Google Discussion Forum 4 01-14-2005 04:55 PM
Links to internal pages saghir69 Search Engine Optimization Forum 2 07-02-2004 05:04 PM


All times are GMT -4. The time now is 01:52 PM.



Search Engine Optimization by vBSEO 3.3.0