apache 无效命令 'ScriptAlias'
apache invalid command 'ScriptAlias'
我正在尝试获取 apache2 运行 但无论我做什么,本地主机都显示为 404 not found。
出现了太多错误,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,但在我上次灾难和重新安装之后我什至还没有让它工作。
ScriptAlias 由 mod_alias 提供。在基于 debian 的发行版上,使用 a2enmod 确保 mod_alias 已加载:
sudo a2enmod alias
我正在尝试获取 apache2 运行 但无论我做什么,本地主机都显示为 404 not found。
出现了太多错误,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,但在我上次灾难和重新安装之后我什至还没有让它工作。
ScriptAlias 由 mod_alias 提供。在基于 debian 的发行版上,使用 a2enmod 确保 mod_alias 已加载:
sudo a2enmod alias