我正在尝试使用 Apache2 在 kubuntu 10 上编译我的第一个 c++ cgi 程序,但什么也没有。
我把它放到 cgi-bin 文件夹中检查了配置文件,在命令上运行程序,将权限更改为可执行文件,但什么也没有。Rekonq 说“没有服务可以处理这个文件”
我已经安装了 apache2。也重启了。坚果
它已经一整天了,绝望了。如果你有任何想法,会救我
我的 cgi-bin 在 etc/apache2/ 中。我的配置文件 @ etc/apache2/sites-enabled/000-default 另一个答案是这些是 Kub10-12 的作者
您可以在此屏幕截图中查看所有配置和执行。也复制到这里 http://img832.imageshack.us/img832/1659/cgiv.jpg
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>