symfony routes
Monday, April 28th, 2008Routing rules in symfony are a way of getting simple url's looking the way you want. So rather than ugly things that show everyone how your system works like: matthewbull.net/index.php?id=3&detail=false&category=true&year=2008 you can have things like: matthewbull.net/id/3/detail/false/category/true/year/2008 Even better than that, using symfony's routing system allows you to completely decouple a url from your code. ...

