Perl script run without .pl extension.

Perl script run without .pl extension.
If client want to run perl script without .pl extension then add the following rule in the .htaccess file under the public_html folder.
==============
<Files ~ ‘^[^.]*$’>
SetHandler cgi-script
</Files>
==============

Leave a Comment