Slash all the way......read this article below that explains why it makes sense to do it. She does a better job than I would..... Authors name is Jennifer Kyrnin. Cutts and Kyrnin are in. make it happen.
Traditionally, URLs that pointed to files did not include the trailing slash, while URLs that pointed to directories do include the trailing slash. This means that:
http://webdesign.about.com/example/
is a directory, while
http://webdesign.about.com/example
is a file
This helps speed up page loading because the trailing slash immediately tells the web server to go to thatexample/
directory and look for the [index.html](http://webdesign.about.com/od/beginningtutorials/f/index_html.htm)
or other default file.
When you go to a URL without the trailing slash, theweb server looks for a file with that name. If it doesn’t find a file with that name, then it looks for a directory and looks for the default file in that directory.
Leaving Off the Slash Results in a Redirect – Redirects Slow Down Web Pages
When you leave off the slash on a URL that is pointing to a directory, you are forcing the server to do a 301 Redirect - HTTP Redirects - 301 Redirect Better than Meta Refreshredirect. While it may seem instantaneous to you, it does take slightly longer for a page to load from a redirect than from the direct URL. And every little bit adds up.
Don’t Include the Slash After Filenames
The only time you shouldn’t include a slash is after a file name in the URL. For example:
Type:
http://webdesign.about.com/example.html
Not:
http://webdesign.about.com/example.html/
If you add the slash, the web server will look for a directory named example.html
, and most servers do not then try to find a file name of that name. So your customers would get a 404 error in that situation.
Always Include the Slash When Linking to Your Domain with No File Name
You can speed up access to your home page by including the trailing slash on your domain name URL. For example:
http://webdesign.about.com_/_
While you can’t control what your readers type into their location bar for your URL, you can control what you link them to. Always include the trailing slash in your URL links. If you include it in your marketing materials as well, you can help keep your pages loading quickly for your readers, as most people type whatever is printed without adding or removing characters.
Article link is here....http://webdesign.about.com/od/beginningtutorials/f/why-urls-end-in-slash.htm