I've recently been using PHP via mod_php, and I assumed that getting mod_perl running properly was going to require a similar setup:
AddType application/x-httpd-php .php
unfortunately this does nothing with mod_perl using:
AddType application/x-httpd-perl .pl
the entire script is simply sent out with a
Content-Type: application/x-httpd-perl
header.
Why doesn't mod_perl execute scripts flagged as application/x-httpd-perl
as mod_php does with scripts flagged as application/x-httpd-php
?