Welcome Guest, Not a member yet? Register   Sign In
URI routing with subdirectory
#1

[eluser]Lark[/eluser]
I've found a weird error while working with URI-routing. Maybe the problem has something to do with my use of subdirectories.

I want to route a ID to a class without defining any method. The class is in a subdirectory.

Code:
$route["subdir/myclass/(\d+)"] = "subdir/myclass/index/$1";

Now I can't receive the ID in my index method.

Code:
function index($id = 0)
    {
            echo $id;
    }

But the funny thing is that if I rewrite the route like this it will work.

Code:
$route["subdir/myclass/(\d+)"] = "subdir/myclass/index/something/$1";

I've added the "something" in the URI.

Is this a bug?


Messages In This Thread
URI routing with subdirectory - by El Forum - 07-04-2007, 02:17 PM
URI routing with subdirectory - by El Forum - 07-12-2007, 04:58 PM
URI routing with subdirectory - by El Forum - 07-17-2007, 06:18 AM



Theme © iAndrew 2016 - Forum software by © MyBB