Forum Moderators: phranque
<a href="/">home</a>
as http://www.example.com/
"Confused with subdomain" I just don't understand. There is a distinct difference between
<a href="/">home</a>
and
<a href="http://widgets.example.com">home</a>
However, FROM a subdomain,
<a href="/">widgets</a>
will return to
http://widgets.example.com
Which is actually an ease of maintenance issue, you can move the page from the domain to the subdomain without changing links.
But the search engines will still see it as http://widgets.example.com.
Typical examples of where you want to use the FULL url:
<a href="/">home</a>
<a href="https://example.com/login/">Log in</a>
From secure pages, to get OFF https and allow the site to run faster,
<a href="http://example.com/">home</a>
<a href="/login">Log in</a>
[edited by: phranque at 7:57 am (utc) on April 22, 2009]
[edit reason] unlinked urls [/edit]