I'm trying to setup a SEO friendly route in the Play! Framework that has multiple parameters (with the 2nd parameter being optional). What I'm aiming for is:
http://domain.com/article/jsmith/name-of-article
But what Play is generating is:
http://domain.com/article/jsmith?articleSlug=name-of-article
In my view:
@{Article.show("jsmith","name-of-article")}
My Controller
public static void show(String username,String articleSlug){
...
}
My routes file
GET /article/{username} Article.show
GET /article/{username}/{articleSlug} Article.show