apache无效命令'ScriptAlias'

时间:2015-02-10 02:04:38

标签: apache debian

我正在尝试运行apache2,但无论我做什么,localhost都会在找不到404时出现。

出现了很多错误,Debian甚至认为没有安装Apache2,但是它功能正常,并且正在运行。但是我不能用--purge或其他方法删除它。

当我开始apache时,我得到了

root@debian:/tmp# /etc/init.d/apache2 restart
Syntax error on line 16 of /etc/apache2/sites-enabled/000-default:
Invalid command 'ScriptAlias', perhaps misspelled or defined by a module not included in the server configuration
Action 'configtest' failed.
The Apache error log may have more information.
failed!

这是网站文件

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

我尝试了各种配置。我的目标是在端口80上为不同的虚拟主机使用多个IP,但是在我上次灾难和重新安装之后,我甚至还没有使用它。

1 个答案:

答案 0 :(得分:2)

ScriptAlias由mod_alias提供。在基于debian的发行版上,使用a2enmod确保加载mod_alias: sudo a2enmod alias