Perl Apache : Perl script displayed as plain text
问题 While configuring with apache and perl cgi scripts , don't know why index.cgi / index.pl are displayed as plain text instead of executing them. When I put http://localhost in browser it displays below code, instead of executing it. List item #!C:/Dwimperl/perl/bin/perl.exe -w print "Content-type: text/html\n\n"; print <<HTML; <html> <head> <title>A perl web page</title> </head> <body> <h3>A hello world form perl</h3> </body> HTML exit; This are parts of httpd.conf file which I have edited