in reply to Do you hide .pl extension on web pages?

I generally use something like mod_rewrite.

Yes, I consider this an important thing to do, as it gives me the freedom to restructure the internals of the site without changing any of the public URLs.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
  • Comment on Re: Do you hide .pl extension on web pages?