I have a controller with an action and a variable like this:
class AccountsController extends AppController
{
function profile($username = null)
{
}
}
The url for this page is:
[domain]/accounts/profile/[username]
How do I make it:
[domain]/[username]
?