Pattern Placeholders
Alphanumeric Placeholders
route( "blog/:year/:month?/:day?", "blog.index" );http://localhost/blog/2012/12/22 -> rc.year=2012, rc.month=12, rc.day=22
http://localhost/blog/2012/12-> rc.year=2012, rc.month=12
http://localhost/blog/2012-> rc.year=2012Optional Placeholders
route( "/blog/:year-numeric/:month-numeric/:day-numeric" );
route( "/blog/:year-numeric/:month-numeric" );
route( "/blog/:year-numeric/" );
route( "/blog/" );route( "/blog/:year-numeric?/:month-numeric?/:day-numeric?" );Numeric Placeholders
Alpha Placeholders
Regular Expression Placeholders
Regular Expression Constraints
Last updated
Was this helpful?