unFocus Projects

Case Insensitive Permalinks Plugin for WordPress

For a while I have been creating and sending links to History Keeper to http://www.unfocus.com/projects/HistoryKeeper/. When I moved that page into WordPress the URL became lower case, and case sensitive. This can be a problem for those used to Windows and IIS non-case sensitive URLs. To get around the problem, I added a hack to my 404.php error handler (more on that later) that would detect capitals in the permalink URL, convert it to lowercase, and then forward the user to the new page with a php Location header (http redirect). That seemed like a clunky solution, so I made a WordPress plugin that does pretty much the exact same thing, only it’s in a plugin! So that makes it less clunky. Well whatever.

Here’s the code:
[cc lang=’php’ ]
< ?php /* Plugin Name: unFocus.Insensitivity Plugin URI: http://www.unfocus.com/projects/ Description: A plugin to make permalinks case insensitive. Version: 1.0a Author: Kevin Newman Author URI: http://www.unfocus.com/projects/ */ function unFocus_insensitivity() { if (preg_match('/[A-Z]/', $_SERVER['REQUEST_URI'])) { $_SERVER['REQUEST_URI'] = strtolower($_SERVER['REQUEST_URI']); $_SERVER['PATH_INFO'] = strtolower($_SERVER['PATH_INFO']); } } add_action('init', 'unFocus_insensitivity'); ?>
[/cc]
Pretty simple really. Honestly, it doesn’t really even need to use a WordPress hook, just the two lines that convert the $_SERVER variables would do it (assuming those aren’t locked down in the php.ini). But I wanted to learn the plugin API anyway. There is an archive download at the end of this post, just unzip the enclosed file, and put it in your plugin directory, upload it and turn it on. No other configuration necessary.

If there is any interest, I was thinking about adding a config option that would allow you to either forward to the all lowercase URL, or to do what it does now, which is to behave pretty much the way IIS does for any other static files it hosts.

Also, if there’s interest, I may try to figure a way to work this WordPress IIS Permalink 404 handler into the plugin, if it’s possible (IIS users would set their custom 404 handler redirect URLs to redirect to /wordpresslocation/index.php instead of /wordpresslocation/404.php, which is how you do it now):
[cc lang=’php’ ]
< ?php $_SERVER['REQUEST_URI'] = substr( $_SERVER['QUERY_STRING'], strpos( $_SERVER['QUERY_STRING'], ':80' ) +3 ); $_SERVER['PATH_INFO'] = $_SERVER['REQUEST_URI']; include('index.php'); ?>
[/cc]
The archive – unFocus.Insensitivity

Update: Fixed the download link.

Comments

25 responses to “Case Insensitive Permalinks Plugin for WordPress”

  1. Brandon Wason Avatar

    Thanks for the plugin. It works great and did exactly what I wanted it to!

    1. Kevin Newman Avatar

      Glad I could help! 🙂

  2. Mark A. Poncelet Avatar
    Mark A. Poncelet

    Great post. We owe you a beer!

  3. Martin Riley Avatar

    Sir, you are a gentleman and a scholar! Many thanks for this.

  4. […] Follow this link to the Unfocus Blog […]

  5. Kevin Newman Avatar

    This post is so old, but seems to still be useful. I may have to put this up on wordpess.org.

  6. לימודים Avatar

    Doesn’t seem to work anymore…

    1. Kevin Newman Avatar

      With all the work that has gone into core, and into IIS for that matter, this really shouldn’t be needed. Also, I no longer maintain this, since I’m on Apache hosting now.

  7. Brian Katz Avatar

    Wish to express our thanks. Thanks!!!!!

  8. Sagive Avatar

    bummer… doesesnt work?
    needed a plugin that does the opposite.
    would it if i change to lower to upper ?

    1. Kevin Newman Avatar

      It should be possible to do that with a plugin called redirection and a simple regex to convert everything to uppser case. I’d say look into that: http://urbangiraffe.com/plugins/redirection/

  9. Chris Avatar
    Chris

    Checked it out tonight and sad to say, it did not work. Any further updates coming?

    1. Kevin Newman Avatar

      I haven’t worked on this in quite a long while. My site now works without it, and urls are not case sensitive. Since it’s already like that here, I’m not sure how I’d approach an update. One note; I am using a plugin called Redirection. Perhaps that disables case sensitivity?

  10. […] confusing scenario actually has a solution with an easy plugin upload.  Simply download the file and add it to your plugin directory to cure this issue.  Then you […]

  11. […] http://www.unfocus.com/2007/08/31/case-insensitive-permalinks-plugin-for-wordpress/ Related Articles:Dave Ross on "[Plugin: Dave's WordPress Live Search] Spinning wheel doesn’t show"accurateKevin on "Pictobrowser on WP-hosted blog?"Cmr.Skills on "Custom Theme not Found? Custom Integration Posts Not Found?"jeremyarntz on "+1 button W3C validation"grejs on "Move WordPress out of WordPress folder" […]

  12. PA Avatar

    This plugin is exactly what I was looking for. It saved me from having to change the domain in books that had already been submitted for publication.

    1. Kevin Newman Avatar

      I’m glad it worked for you. 🙂

  13. brian Avatar
    brian

    Nice! Thanks hommie!

  14. Megha Avatar
    Megha

    Great work Kevin.. Your code might be old, but it still do work!
    Thanks a lot.
    Megha

  15. Brittany Avatar

    Just wanted to say a BIG THANK YOU for this! Exactly what I needed.

  16. Giorgos Avatar

    Excellent! It took me 3 days to find a solution to this issue, THANKS MR NEWMAN!

  17. Nicky Moorhead Avatar

    September 2014 and this plugin is still working a treat. Thank you sir!

  18. Emily Capito Avatar

    THANK YOU! This worked like a charm – it’s virtually never this easy to troubleshoot a WordPress problem.

Leave a Reply

Your email address will not be published. Required fields are marked *