I need to make a website that will have articles, and I would like to make friendly urls for it, example:

Title: Article Test

should become http://www.example.com/articles/article_test

Of course I need to remove some characters from the title like ? or #, but I'm not sure which ones to remove.

Can someone tell me what characters are safe to keep?

thanks!

link|improve this question

41% accept rate
feedback

10 Answers

up vote 26 down vote accepted

To quote section 2.3 of RFC 3986:

"Characters that are allowed in a URI but do not have a reserved purpose are called unreserved. These include uppercase and lowercase letters, decimal digits, hyphen, period, underscore, and tilde."

link|improve this answer
@Skip Head, does "characters" include Latin encoded characters like ç and õ? – Mohamad Jun 10 '11 at 19:34
1  
@Mohamad: No, ASCII only, although UTF-8 support is getting better. – Dietrich Epp Jun 19 '11 at 12:58
@Dietrich Epp, thank you. I guess it shouldn't matter if the URL is for decoration and SEO purposes, like: www.mysite.com/[postId]/post-title-with-ç-and-õ – Mohamad Jun 19 '11 at 15:22
@Mohamad: The last part there will get changed under the hood to post-title-with-%C3%A7-and-%C3%B5, but it will still display in the user's location bar as post-title-with-ç-and-õ. – Dietrich Epp Jun 19 '11 at 16:35
1  
Your readers are Portuguese, so use Portuguese characters. – Dietrich Epp Jun 19 '11 at 19:49
show 1 more comment
feedback

There are two sets of characters you need to watch out for - Reserved and Unsafe.

The reserved characters are: ampersand ("&") dollar ("$") plus sign ("+") comma (",") forward slash ("/") colon (":") semi-colon (";") equals ("=") question mark ("?") 'At' symbol ("@").

The characters generally considered unsafe are: space, question mark ("?"), less than and greater than ("<>") open and close brackets ("[]") open and close braces ("{}") pipe ("|") backslash ("\") caret ("^") tilde ("~") percent ("%") and pound ("#").

I may have forgotten one or more, which leads to me echoing Carl V's answer. In the long run you are probably better off using a white list of allowed characters and then encoding the string than trying to say abreast of characters that are disallowed by servers and systems.

link|improve this answer
feedback

The format for an URI is defined in RFC 3986. See section 3.3 for details.

link|improve this answer
feedback

You are best keeping only some characters (whitelist) instead of removing certain characters (blacklist).

You can technically allow any character, just as long as you properly encode it. But, to answer in the spirit of the question, you should only allow these characters:

  1. Lower case letters (convert upper case to lower)
  2. Numbers, 0 through 9
  3. A dash - or underscore _
  4. Tilda ~

Everything else has a potentially special meaning. For example, you may think you can use +, but it can be replaced with a space. & is dangerous, too, especially if using some rewrite rules.

As with the other comments, check out the standards and specifications for complete details.

link|improve this answer
what about the period? – Neil N Jul 29 '10 at 20:39
2  
A preiod, I discovered today, is a bad choice of character to use for a URL-safe Base64 encoder, because there will be those rare cases where your encoded data may produce two consecutive dots (".."), which is significant in that it refers to the parent directory. – pohl May 3 '11 at 21:54
@pohl: that's only a problem if your URL is used as a file path, either in your code or if your web server actually tries to map the URL to files before forwarding the request to a script (unfortunately very common). – André Caron May 6 '11 at 22:01
Actually, in our case using it as a file path would be ok, since in unix files are allowed to have multiple, and even consecutive, dots in their names. For us, the problem arose in a monitoring tool called Site Scope which has a bug (perhaps a naive regex) and it was reporting spurious false downtimes. For us, we are stuck on an old version of Site Scope, the admin team refuses to pay for an upgrade, and one very important client has Site Scope (not an equivalent) written into their contract. Admittedly, most won't find themselves in my shoes. – pohl May 7 '11 at 1:48
feedback

From the context you describe, I suspect that what you're actually trying to make is something called an 'SEO slug'. The best general known practice for those is:

  1. Convert to lower-case
  2. Convert entire sequences of characters other than a-z and 0-9 to one hyphen (-) (not underscores)
  3. Remove 'stop words' from the URL, i.e. not-meaningfully-indexable words like 'a', 'an', and 'the'; Google 'stop words' for extensive lists

So, as an example, an article titled "The Usage of !@%$* to Represent Swearing In Comics" would get a slug of "usage-represent-swearing-comics".

link|improve this answer
Is it really a good approach to remove these "stop words" from the url? Would search engines penalize a website because of this? – Paulo Mar 30 '09 at 2:40
Search engines are generally believed to only acknowledge some portion of the URL and/or to give reduced significance to later portions, so by removing stop words what you're doing is maximizing the number of keywords you embed in your URL that you have a chance of actually ranking on. – chaos Mar 30 '09 at 3:50
feedback

There was a similar question, here. Check it out, you may find some useful answers there also (there were quite a lot of them).

link|improve this answer
feedback

From an SEO perspective, hyphens are preferred over underscores. Convert to lowercase, remove all apostrophes, then replace all non-alphanumeric strings of characters with a single hyphen. Trim excess hyphens off the start and finish.

link|improve this answer
feedback

unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"

link|improve this answer
feedback

I had similar problem, I wanted to have pretty urls and reached to the conclusion that I have to allow only letters, digits, - and _ in urls. That is fine, then I wrote some nice regex and I realized that it recognizes all UTF8 chars are not letters in .NET and was screwed. This appears to be a know problem for .NET regex engine. SO I got to this solution:

`private static string GetTitleForUrlDisplay(string title) {

        if (!string.IsNullOrEmpty(title))
        {
            return Regex.Replace(Regex.Replace(title, @"[^A-Za-z0-9_-]", new MatchEvaluator(CharacterTester)).Replace(' ', '-').TrimStart('-').TrimEnd('-'), "[-]+", "-").ToLower();
        }
        return string.Empty;
    }

`

    ´/// <summary>
    /// All characters that do not match the patter, will get to this method, i.e. useful for unicode chars, because
    /// .NET impl of regext do not handle unicode chars. So we use char.IsLetterOrDigit() which works nicely and we 
    /// return what we approve and return - for everything else.
    /// </summary>
    /// <param name="m"></param>
    /// <returns></returns>
    private static string CharacterTester(Match m)
    {
        string x = m.ToString();
        if (x.Length > 0 && char.IsLetterOrDigit(x[0]))
        {
            return x.ToLower();
        }
        else
        {
            return "-";
        }
    }´
link|improve this answer
feedback

I think you're looking for something like "URL Encoding" - encoding a URL so that it's "safe" to use on the web:

Here's a reference for that. If you don't want any special characters, just remove any that require URL encoding:

http://www.w3schools.com/TAGS/ref_urlencode.asp

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.