Forum Moderators: open
At the moment I'm using the entire URL when I create a link:
Example: [webmasterworld.com...]
Yet I am wondering should I simply use:
Example: www.webmasterworld.com
And also would writing it without the / make a difference? I have sometimes tried going to a site only to find I left out the ending / and that's why it wouldn't come up. I suppose it has to do with compatability issues. Also maybe writing:
Example: webmasterworld.com
would be a better approach. Will any have problems?
Example:
<a href="www.webmasterworld.com">WebmasterWorld</a>
or would using
<a href="http://www.webmasterworld.com/">WebmasterWorld</a>
be better. Or I could use:
<a href="webmasterworld.com">WebmasterWorld</a>
As you can see there is a size difference and considering the many links I have it would make a difference to an extent. Which however it a better approach?
You can omit the protocol if the link is to a page using the same protocol as yours, like this: <a href="//www.webmasterworld.com/">. Please notice, however, that there are a lot of buggy spiders out there that don't understand that kind of link, and generates bogus requests to a file called "//www.webmasterworld.com/" if you use them.
I use links on that form myself a lot, as it is less to type and it's fun to see who has read the specs and who has not when implementing the spider. It also gives the satisfaction of complaining to the bot owner (like the prototype version of the new msnbot from Microsoft, which had some problems in this area in the beginning).