apache에서 cgi를 실행 시킬수 있는 디렉토리 설정부분이
있습니다.
자세한것은 매뉴얼을 보세요
598 # The same rules about trailing "/" apply to ScriptAlias directives as to
599 # Alias.
600 #
601 ScriptAlias /cgi-bin/ "/usr/loca/apache/cgi-bin/"
602
603 #
604 # "/usr/loca/apache/cgi-bin" should be changed to whatever your ScriptAliased
605 # CGI directory exists, if you have that configured.
606 #
607 <Directory "/usr/loca/apache/cgi-bin">
608 AllowOverride None
609 Options None
610 Order allow,deny
611 Allow from all
612 </Directory>
: cgi를 아무데서나 실행할수 있게 하구싶습니다....
: 어떡게 해야할까여...
: 아참.. 그리구.. php는 뭘로 실행되나요??
: php는 실행 안되던데..
#
796 # AddType allows you to tweak mime.types without actually editing it, or to
797 # make certain files to be certain types.
798 #
799 # For example, the PHP 3.x module (not part of the Apache distribution - see
800 # http://www.php.net) will typically use:
801 #
802 #AddType application/x-httpd-php3 .php3
803 #AddType application/x-httpd-php3-source .phps
804 #
805 # And for PHP 4.x, use:
806 #
807
808 AddType application/x-httpd-php .php
809 #AddType application/x-httpd-php-source .phps
810
811 AddType application/x-tar .tgz