我将Windows httpd.conf文件移植到linux apache服务器。我已经完成了,但我得到的唯一错误是:
* Starting web server apache2 [Tue Feb 07 14:24:34 2012] [warn] The Alias directive in /etc/apache2/httpd.conf at line 449 will probably never match because it overlaps an earlier Alias.
Syntax error on line 461 of /etc/apache2/httpd.conf:
Invalid command 'Script', perhaps misspelled or defined by a module not included in the server configuration
Action 'start' failed.
The Apache error log may have more information.
我在第461行的httpd.conf文件如下:
ScriptAlias /cgi-bin "/var/www/cgi-bin"
Script PUT /cgi-bin/put.py
答案 0 :(得分:2)
看起来未加载mod_actions
module。该模块允许使用Script
s。
如果激活此模块,则错误消息应消失。
您通常可以通过从相应的mod_actions
目录创建符号链接来激活mods_available
,如下所示:
ln -s /etc/apache2/mods-available/actions.load /etc/apache2/mods-enabled/actions.load
您的计算机上的目录结构可能不同,但原理保持不变:有可用的模块,可以通过符号链接到mods_enabled
目录来激活这些模块。