編輯:

編輯:

我有一個 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 目錄有問題 這沒有解決我的問題!

替換所有實例execgi沒有解決我的問題!

添加

<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>

相關內容