我有一个 apache 2.4.46-3 服务器,它从 /srv/http 提供服务。我有一个包含 2 个文件的文件夹 /srv/http/bin:
.htacces(模式 644):
AddHandler cgi-script .exe
Options +ExecCGI
main.exe(模式 755):从 main.cpp 编译:
#include <iostream>
using namespace std;
int main () {
cout << "Content-type:text/html\r\n\r\n";
cout << "<html>\n";
cout << "<head>\n";
cout << "<title>Hello World - First CGI Program</title>\n";
cout << "</head>\n";
cout << "<body>\n";
cout << "<h2>Hello World! This is my first CGI program</h2>\n";
cout << "</body>\n";
cout << "</html>\n";
return 0;
}
但是当我访问页面 localhost/bin/main.exe 时,它会提供下载 exe 而不是显示 html。我忘记启用某些东西了吗?
编辑:
cgi-bin 目录有问题, 这并没有解决我的问题!
exe
替换with的所有实例cgi
也没有解决我的问题!
添加
<Directory "/srv/http/bin">
Options +ExecCGI
AddHandler cgi-script cgi pl exe
AllowOverride All
Require all granted
</Directory>
到 httpd.conf 也没有解决问题!没有/var/log/httpd/error_log
与 cgis 或 exes 或 /srv/http/bin 文件夹相关的错误,那么这里可能发生了什么?
原来我没有在 httpd.conf 中加载 cgi 模块。
以下是相关配置(在您的配置中搜索“cgi_module”):