Hi;
I use auto prepend in .htaccess for php files and work well, for example :
Code:
php_value auto_prepend_file "/var/www/html/file.php"
But how to do that for cgi script which is an executable ? For example :
Code:
php_value auto_prepend_file "/var/www/html/script.cgi"
This command return the content of the script.cgi file instead of executing it. So what is the issue or what i am missing to add in my .htaccess file to make the script execute ?
Thank you