A Navigation Pattern from
Patterns for Personal Web Sites
Occasionally a visitor will try to find something on your site by guessing its URL. If your URLs are obscure, visitors' attempts to guess them will always fail.
Obscure URLs also make maintenance harder. Does rec/bklst2.html
refer to 2 recreational bikes, the second page of a backlist of recordings, or a list of books received in 2002? When your site grows into dozens of pages, it becomes increasingly difficult to associate cryptic names with specific pages.
Therefore, make your URLs simple enough to guess, and to remember.
Hints:
Use one style of file & directory names (e.g., lowercase.names.with.dots
, or BumpyCase
).
Keep your directory structure simple, with no more than two levels of subdirectories. This reinforces Three Jump Maximum.
Let your directory structure mirror your site structure.
Last updated 20 June 2002
http://www.rdrop.com/~half/Creations/Writings/Web.patterns/guessable.urls.html
All contents ©2002 Mark L. Irons