Simple Routing Library

Once I've wrote a simple routing library. You know, the one that you can use to make pretty urls such as: http://ferdianto.com/2009/05/21/this-is-a-post. Actually, framework like CodeIgniter has internal support for friendly URLs. But, what if you already have an up-and-running application and decide to make pretty urls. This library is intentionally made simple so that it can be included in any framework or application you have.

The library is inspired by Django — web framework build in python language. So, you only have to specify the URL pattern (perl-compatible-regex) and handler. Here's some simple usage:

include 'route.php';

//a simple controller class
class HelloController
{
    function hello()
    {
        echo 'Hello World';
    }
}

//a simple controller class
class TestController
{
    function test()
    {
        echo 'test';
    }
}

//a simple controller function
function index()
{
    echo 'Hello World';
}

//a simple controller which accept parameters
function testparam()
{
    echo '
',print_r( func_get_args() ),'
'; } $urls = array( //simple function '!^$!' => 'index', //using string as classname '!^test/$!' => array( 'TestController', 'test' ), //using object '!^hello/$!' => array( new HelloController, 'hello' ), //use parameterized regex '!^archives/(\d+)/(\d+)/(\d+)/(.+)$!' => 'testparam', //simple include '!^about$!' => 'about.php', ); route($urls);

Requirement for this library to work is mod_rewrite. And the configuration is pretty simple, I've just use the wordpress .htaccess configuration. Here's the rewrite syntax:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ /index.php [L]

Interested? You can download the source via link below.

http://beta.ferdianto.com/media/route.php

33 Comments | [Put comments]

  1. gravatar aryo sanjaya - May 21, 2009

    If we have an up and running web already, then we can restructure and redesign the web to have friendly URLs.

    That is new project, I think.

    And new income.

  2. gravatar anton ashardi - May 24, 2009

    sweet! so thats how it works :p

  3. gravatar ferdhie - August 20, 2009

    lets make it as simple as possible bro

  4. gravatar smerveemose - May 1, 2011

    In Home Drug Testinh http://www.online-thecatsmeow.com/ - diflucan
    <a href=http://www.online-thecatsmeow.com/>diflucan for men</a> Some of the side effects which are commonly associated with the use of Diflucan include: rash, or skin irritation; headache; dizziness; nausea; vomiting; abdominal pain; diarrhea; and possibly elevated liver enzymes. http://www.online-thecatsmeow.com/ - purchase diflucan Difulcan is a medication which is used in the treatment, and prevention, of fungal infections. http://www.online-thecatsmeow.com/ - fluconazole tablets Unlike other medications on the market, if you miss dose of Diflucan, you will not want to try and catch up by taking an extra dose or two.

  5. gravatar bimbshoms - May 4, 2011

    Steroid The Drug http://salonevevb.com/ - cialis medication Cialis is preferred by many men because it has a 36 hour window of effectiveness, meaning it doesn?t need to be taken daily for it to be effective. <a href=http://salonevevb.com/>tadalafil online</a>

  6. gravatar pharme662 - January 7, 2012

    Hello! cefabde interesting cefabde site! I'm really like it! Very, very cefabde good!

  7. gravatar pharme301 - January 10, 2012

    Hello! fekedke interesting fekedke site! I'm really like it! Very, very fekedke good!

  8. gravatar pharme252 - January 10, 2012

    Very nice site! <a href="http://apxyieo.com/qyoarx/1.html">cheap viagra</a>

  9. gravatar valium - January 13, 2012

    Hello!

  10. gravatar cialis - January 14, 2012

    Aloha!

  11. gravatar adipex - January 15, 2012

    Hello!

  12. gravatar phentermine - January 18, 2012

    Hello!

  13. gravatar phentermine - January 19, 2012

    Hello!

  14. gravatar phentermine - January 19, 2012

    Aloha!

  15. gravatar phentermine - January 21, 2012

    Aloha!

  16. gravatar phentermine - January 21, 2012

    Hello!

  17. gravatar ambien - January 24, 2012

    Aloha!

  18. gravatar brand_klonopin - January 25, 2012

    Hello!

  19. gravatar adipex - January 26, 2012

    Hello!

  20. gravatar adipex - January 31, 2012

    Perfect!

  21. gravatar adipex - February 1, 2012

    Hi there!

  22. gravatar adipex - February 1, 2012

    Hi there!

  23. gravatar valium - February 10, 2012

    Good site,

  24. gravatar ambien - February 10, 2012

    Aloha!

  25. gravatar ativan - February 10, 2012

    Good site,

  26. gravatar klonopin - February 10, 2012

    Good site,

  27. gravatar tramadol - February 11, 2012

    Hi there!

  28. gravatar xanax - February 11, 2012

    Good site,

  29. gravatar phentermine_37_5mg - February 11, 2012

    Aloha!

  30. gravatar zolpidem - February 11, 2012

    Hello!

  31. gravatar provigil - February 11, 2012

    Aloha!

Leave a Reply