How To Extend Parameters on the URL in KohanaPHP?
问题 How do I pass extra parameters in the URL to KohanaPHP (version 3.1+) like so... http://example.com/blog/edit/4000/3200 ...where "blog" is the blog.php in the controllers folder, "edit" is a controller method, 4000 is parameter 1 which I can use for who wants to edit the record, and 3200 is parameter 2 which I can use for the record ID? I get the blog and edit parts. The problem is the 4000 and 3200. When I run that URL, I get an error: "404 - Unable to find a route match blog/edit/4000/3200"