Ray Zimmerman wrote:
> So how is everybody else handling URL mapping?

In httpd.conf:

<Location /search>
   SetHandler  perl-script
   PerlHandler Controller::Search
</Location>

<Location /cart>
   SetHandler  perl-script
   PerlHandler Controller::ShoppingCart
</Location>

Most applications only have a handful of controllers, so this works fine.

You could also look at the way OpenInteract does it, which allows you to 
gather all the related stuff including this configuration into a single 
package that you can install in one shot.

- Perrin

Reply via email to