Welcome Guest, Not a member yet? Register   Sign In
urls with dashes, instead of underscores
#12

[eluser]LAMP Coder[/eluser]
[quote author="jaysonng" date="1247779630"]Hi "LAMP Coder"

do you mind sharing the code(s) on how you solved this?

like what regex in the config file did you use?

what about the _remap?

thanks,[/quote]


I used following code:


I'm sure this can be done in a better way, but this is what I used:
Add following to your routes.php file
Code:
$route['([a-z]+)-([a-z]+)-([a-z]+)(.*)'] = "$1_$2_$3$4";
$route['([a-z]+)-([a-z]+)(.*)'] = "$1_$2$3";


in your controller, all following method:
Code:
function _remap($method)
    {
            $method = str_replace('-','_',$method);
            if(method_exists($this, $method))
            {
                $this->$method();
            }
            else
                show_404();
        
    }

while defining your methods, use underscores instead of dashes.


Messages In This Thread
urls with dashes, instead of underscores - by El Forum - 07-11-2009, 04:18 PM
urls with dashes, instead of underscores - by El Forum - 07-11-2009, 04:21 PM
urls with dashes, instead of underscores - by El Forum - 07-11-2009, 04:22 PM
urls with dashes, instead of underscores - by El Forum - 07-11-2009, 04:27 PM
urls with dashes, instead of underscores - by El Forum - 07-11-2009, 05:08 PM
urls with dashes, instead of underscores - by El Forum - 07-11-2009, 05:10 PM
urls with dashes, instead of underscores - by El Forum - 07-11-2009, 06:02 PM
urls with dashes, instead of underscores - by El Forum - 07-12-2009, 12:11 AM
urls with dashes, instead of underscores - by El Forum - 07-12-2009, 01:37 AM
urls with dashes, instead of underscores - by El Forum - 07-12-2009, 06:04 AM
urls with dashes, instead of underscores - by El Forum - 07-16-2009, 10:27 AM
urls with dashes, instead of underscores - by El Forum - 09-14-2009, 11:52 PM
urls with dashes, instead of underscores - by El Forum - 09-16-2009, 10:22 AM
urls with dashes, instead of underscores - by El Forum - 09-17-2009, 06:06 PM
urls with dashes, instead of underscores - by El Forum - 09-17-2009, 06:57 PM
urls with dashes, instead of underscores - by El Forum - 09-17-2009, 06:59 PM
urls with dashes, instead of underscores - by El Forum - 09-17-2009, 09:10 PM
urls with dashes, instead of underscores - by El Forum - 09-18-2009, 12:09 PM



Theme © iAndrew 2016 - Forum software by © MyBB