我正在尝试从头开始设置我的Apache2,它没有启用模块安装,或任何相关的默认配置,可以被视为'web主机'(实际上html显示为文本,PHP文件已下载)
无论如何我在httpd.conf中有这个
# Default Directory Settings
<Directory />
DirectoryIndex index.html index.php
Options FollowSymLinks
AllowOverride All
</Directory>
index.html似乎默认工作,但index.php不起作用。我究竟做错了什么?
<VirtualHost *:80>
ServerAdmin webmaster@localhost
<IfModule mod_php5.c>
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
php_flag magic_quotes_gpc Off
php_flag track_vars On
php_flag register_globals Off
php_value include_path .
</IfModule>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
DocumentRoot /home/was/www
<Directory /home/was/www/>
Options FollowSymLinks
Options +ExecCGI Indexes FollowSymLinks MultiViews
DirectoryIndex index.html index.php
AllowOverride All
Order allow,deny
allow from all
</Directory>
<Location /cgi-bin >
SetHandler cgi-script
Options +ExecCGI
</Location>
<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>
注意所有的黑客只是为了让事情发挥作用,比如PHP。它很烦人。
答案 0 :(得分:0)
显然,如果您没有启用网站,Apache2仍可能会加载该文件并使用其中一些设置。
此文件特别声明了我要使用的IP之一,并转发到新端口上的新www文档根目录。即使网站已停用,这仍然有效,但<directory>
和其他设置不正常工作,直到我启用它。
我在Apache2上的不好但很奇怪的功能。