编辑:

编辑:

我有一台 apache 2.4.46-3 服务器,它通过 /srv/http 提供服务。我有一个文件夹 /srv/http/bin,其中包含 2 个文件:

.htacces(模式 644):

AddHandler cgi-script .exe
Options +ExecCGI

主程序(模式 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用替换所有实例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 文件夹相关的错误,那么这里可能发生了什么?

答案1

事实证明我没有在 httpd.conf 中加载 cgi 模块。

以下是相关配置(在您的配置中搜索“cgi_module”):

<IfModule !mpm_prefork_module>
        LoadModule cgid_module modules/mod_cgid.so
</IfModule>
<IfModule mpm_prefork_module>
        LoadModule cgi_module modules/mod_cgi.so
</IfModule>

相关内容