cgi-binのサブディレクトリのcgiが動作しない
Perl の CGI です。
cgi-bin/hello.cgi
だと動作するのですが、サブディレクトリを置いて
cgi-bin/folder/hello.cgi
という感じにすると
Forbidden
You don't have permission to access /cgi-bin/0_search/hello.cgi on this server.
と表示されて動作がしません。
folder と cgi のパーミッションは 755 です。
hello.cgi の中身
#!/usr/bin/perl
print "Content-type: text/html \n\n";
print "Hello";
Apache のバージョン確認
[vagrant@localhost 0_search]$ httpd -v
Server version: Apache/2.4.6 (CentOS)
Server built: May 12 2016 10:27:23
[vagrant@localhost 0_search]$
CentOS7 です。