When we mention internal links for a website should the internal links be mentioned with the domain or with /. Which would be better from the SEO point of view. For example is my page is http://www.testdomain.com/about.htm, and I give an internal link to this page from another page, should I mention the internal link as
<a href="/about.htm">About</a>
or
<a href="http://www.testdomain.com/about.htm">About</a>
Which would suit SEO better? Thanks in advance.
From an SEO standpoint: no difference whatsoever.
From a maintenance standpoint: please go with
<a href="/about.htm">About</a>