show/hide this revision's text 2 added 1 characters in body

You should use a front controller (also referred to as bootstrapping) to determine the route and include the correct script (rather than re-route)re-direct). A front controller is a single entry point to your application, and allows you to handle routing as you see fit.

Most frameworks have a nice implementation of a front-controller, but for simple purposes you can roll your own.

show/hide this revision's text 1

You should use a front controller (also referred to as bootstrapping) to determine the route and include the correct script (rather than re-route). A front controller is a single entry point to your application, and allows you to handle routing as you see fit.

Most frameworks have a nice implementation of a front-controller, but for simple purposes you can roll your own.