Skip to primary navigation Skip to main content
US flag signifying that this is a United States Federal Government website An official website of the United States Government USDA United State Department of Agriculture Farm Production and Conservation

URLs and Filenames

So users can easily search and find your content, here's how you can provide context when naming digital structures.

Creating URLs

URLs should be short, memorable, easy to type, and well-structured. Your control over your URL may be limited, but you should do what you can with the pieces you can control.

In the vast majority of cases, everything a user can reach on your site should have a distinct URL that a user can bookmark and use later to reach that same location.

When creating URLs, use dashes to separate words, omit articles (such as “a”, “an”, and “the”), use the stems of verbs (/make-thing rather than /making-thing), and avoid extraneous terms.

Domains

Domains should reflect the user’s needs and not those of the organization. If your organization is several layers deep in terms of bureaucratic structure, it’s unlikely that this is important to users, and there is likely minimal cost associated with using a more shallow domain.

It’s not necessary to have www. at the start of a domain. This is a holdover from the early days of the internet. Any domain that has a www level should also work if that level is omitted. Domain names should be short, using abbreviations unless those are likely to be meaningless to users.

As domains should not be more than three levels deep in most cases (e.g., fsa.usda.gov is fine), it’s rare that more than four levels is justifiable. On a related note, it’s unnecessary to have a two-level domain for everything.

If a domain level has more than one word, you should strongly consider separating the words with dashes to make sure users read them the way you intend. If FPAC had a project hypothetically called “Service Systems for Youth (SSY)”” that for some reason needed a two-level domain, that domain should be fsa-ssy.gov and not fsassy.gov (ssy.fsa.gov would probably be the ideal).

As domains are case-insensitive, they should almost always be written in lowercase.

Paths

Again, the shorter the better, but long paths are more excusable than long domains.

Paths are typically understood as hierarchies that become increasingly specific: /content/urls-and-filenames reflects that “URLs and Filenames” is part of the Content Guide. If this were a much larger guide, it’s possible that it could be divided further, for example /content/urls-and-filenames/creating-urls.

Each level of a path should make it possible to find the content beneath it:

  • The content at the root level should reflect that /content is present.
  • /content should make it easy to find urls-and-filenames.

Conversely, the user should be able to remove a level from the path and end up at the parent of the original content.

Paths should be designed to be sensible for the user, not to reflect internal technical or bureaucratic structure. For example, filename extensions like .php should be avoided as they reflect the internal technology used on the server (and will not reflect even that if the site later changes to a different technology).

When separating words in a path, use hyphens. Hyphens are commonly understood by search engines to indicate word breaks (whereas other separators, like underscores, are not).

Paths are case-sensitive. They should be lowercase, regardless of what they contain, as uppercase letters make them more difficult to type (and to remember).

Examples

Domain names

  • Starting Point: www.longnamecreationservice.departmentoflongnames.bureauofnames.gov.
  • Slight improvement: longnamecreationservice.departmentoflongnames.bureauofnames.gov.

    Rationale: www is unnecessary and omitting it makes the URL easier to type.

  • Very slight improvement: long-name-creation-service.departmentoflongnames.bureauofnames.gov.

    Rationale: Hyphens make the URL easier to read. The same would be true for the other levels of the domain, but we assume that you don’t have control over those in these examples.

  • Improvement: long-name-creation-service.bureauofnames.gov.

    Rationale: The user doesn’t need the URL to reflect that the service belongs to the Department of Long Names.

  • Better: lncs.bureauofnames.gov.

    Rationale: This is shorter and easier to type. However, it relies on users thinking of the service by that abbreviation.

  • Better: make-long-names.bureauofnames.gov.

    Rationale: If the users aren’t familiar with that abbreviation, a shorter description of what the service does is better to have as the lowest level of the domain.

Paths

  • Starting Point: /services/default/php/forms/departmentoflongnames/longnamecreationservice/index.php?action=create.
  • Slight improvement: /services/default/php/forms/departmentoflongnames/longnamecreationservice/index.php.

    Rationale: Assuming that creation is the most likely action users will want to take, make it the default and strip the requirement for the query string.

  • Slight improvement: /services/default/php/forms/departmentoflongnames/longnamecreationservice.

    Rationale: The default page should be delivered automatically, making the inclusion of index.php unnecessary. Also, hide the technical details (.php).

  • Improvement: /departmentoflongnames/longnamecreationservice.

    Rationale: Users don’t need to know the technical setup of the site.

  • Improvement: /department-of-long-names/long-name-creation-service.

    Rationale: Words should be separated with hyphens.

  • Better: /department-of-long-names/lncs.

    Rationale: As above, if the users are familiar with the abbreviation, use it to make the path shorter.

  • Better: /department-of-long-names/make-long-names.

    Rationale: As above, if users aren’t familiar with the abbreviation, use a shorter description of what the server does.

Both

  • Starting Point: www.longnamecreationservice.departmentoflongnames.bureauofnames.gov/services/default/php/forms/departmentoflongnames/longnamecreationservice/index.php?action=create.
  • Improvement: make-long-names.bureauofnames.gov/department-of-long-names/make-long-names.

    Rationale: This combines the suggestions from the previous two sections.

  • Better: make-long-names.bureauofnames.gov.

    Rationale: This is reasonable if the Department of Long Names has only a couple of services that might be popular enough to warrant their own subdomains, particularly if they don’t necessarily fit cleanly into other content and stand alone.

  • Better: bureauofnames.gov/department-of-long-names/make-long-names.

    Rationale: This is reasonable if the Long Name Creation Service is one of many related services that the Department of Long Names provides.

Maintaining URLs

Users constantly bookmark and share web pages, making the maintenance of permanent and long-lasting URLs an important piece of content management. Broken links obscure the internet landscape and ultimately erode trust.

URLs should never stop working.

This is not as technically challenging as it sounds. If the domain — the high-level domain, not subdomains — is lost, the URLs will be lost, but otherwise it’s entirely possible to keep them working. Planning for them to continue working is the first step in any process that involves new URLs.

Whenever possible, maintain original URLs. In all other cases, set up a redirect for outdated URLs and links; this is almost always a painless task for web managers. There are a variety of ways to accomplish this, some of them requiring more technical work than others. It’s most difficult to accomplish when moving from URLs that include query parameters, as some early website systems did. Sensibly-constructed URLs are easier to migrate.

Some examples:

Changing subdomains

If we changed our name from FSA to FSA-123, we would change our domain, so our parent URL would then change from http://fsa.usda.gov to http://fsa-123.usda.gov. We would keep the fsa.usda.gov domain running, but all it would do would redirect everything to fsa-123.usda.gov. Users who entered the old URL would be redirected and might not even notice the URL change.

If the FSA subdomain was hypothetically eliminated and we hosted content directly via usda.gov, we would do essentially the same thing, keeping the original subdomain and adding a rule to redirect to the new relevant path on usda.gov.

Changing paths

Perhaps we decide to incorporate both FSA newsroom and social media within an overarching media center. If so, it might be sensible to change our path to reflect this, so that the URL would change from https://fsa.usda.gov/news-room to https://fsa.usda.gov/media-center/newsroom. In this case, we would add a rule that redirects everything starting with /news-room to /media-center/newsroom.

This also means that URLs, and parts of URLs, should not be re-used. Once we use /newsroom to refer to the digital location for the FSA newsroom, we can no longer decide in future to use /newsroom as the location for something else, even if we later change the URL for the newsroom.

Creating filenames

Use hyphens to separate words, just as with URLs.

Lowercase is better, because it’s easier to type and to remember.

Use the right extension — PDFs should have .pdf at the end, JPGs should have .jpg at the end, etc.

Shorter is better, but the content should be descriptive to the user, and it’s better to have long descriptive filenames than short obscure ones. summary-of-farmland-findings.pdf is better than findings.pdf or sumflfind.pdf.

If the file content is based on a date or time, include that: the 2003 report for an organization should have 2003 in the filename, a January issue of a magazine should have the year and the month, and a PDF of a daily newspaper should have year, month, and date. When including dates, use the YYYY-MM-DD format, i.e. 2003-01-15.

Avoid the use of special characters beyond the hyphen and period, unless absolutely necessary. Do not include spaces (use hyphens in their place).

Presenting URLs and filenames in text

Whether beginning with the protocol or not, always lowercase URLs in text. Paths are case-sensitive, however, so their casing must be preserved.

In interactive contexts, particularly web pages, URLs (except when used as examples, as throughout this document) should always be active links. When they’re active links, do not include the protocol in the link text.

In non-interactive contexts, such as print, the protocol can be omitted, assuming http:// and https:// both work and bring the user to the same place.

There are occasions where URLs should be delimited; use < and > for this. This is not normally necessary in interactive contexts where the link is clearly defined, but is most often relevant in email, where the writer may have to guess at what their email program will turn into a link. This is particularly true when a URL contains spaces.

Filenames are case-sensitive, and their case should be preserved when they are referred to in text; do not capitalize if beginning a sentence with a filename that begins with a lowercase letter. Filenames may need to be delimited in the same way as URLs.

Examples

Capitalization on a web page:

gsa.gov is the General Services Administration site.

Capitalization in print:

gsa.gov is the General Services Administration site.

Delimiting an awkward URL in email:

When you get the chance, could you redirect <example.com/spaces in URLs are bad> to <example.com/spaces-in-urls-are-bad>, as per our guidelines, and make the latter the definitive URL for the page?

URL structure

  1. The protocol. For example https://, http://, or ftp://. The :// is always present.
  2. The domain. For example fsa.usda.gov. This is “where on the internet” the URL refers to. Also called:
    • Site
    • Domain name
    • Server
  3. Optional: the port. A number specifying how to access the content on this particular domain. Not normally used on production sites. Follows the domain, separated by a colon, for example http://dev.example.com:8080.
  4. The path: what resource on the domain the URL refers to. If omitted, defaults to /, the “root level” of the domain. Always starts with a slash, and different levels of resources are separated by slashes. For example: /news-room is the path in http://fsa.usda.gov/news-room.
  5. Optional: the query string. Normally contains parameters that have been submitted to the site, for example with searches. ?q=FSA+news+room is the query string in https://www.google.com/search?q=FSA+news+room.
  6. Optional: the fragment. Normally this indicates a specific section of a page, but can also be used for other things by web applications. #main is the fragment in http://fsa.usda.gov/news-room/public-service-announcements/#main.

The protocol should almost always be https:// unless you’re forced to use http://. Users entering http:// as the protocol should be redirected to https://. If at all possible, your URL should not contain a port. Query strings should also be avoided. Fragments can be used as a helper for the user, but should not be necessary for the user to find the relevant content.

Return to top