我使用msi安装程序安装了Apache 2.4,当我在浏览器上输入localhost时,我收到消息“It works”。
我通过添加以下行来配置httpd.conf文件
LoadModule php5_module "C:/php/php5apache2_4.dll"
AddHandler application/x-httpd-php .php
# configure the path to php.ini
PHPIniDir "C:/php"
我还将index.php添加到DirectoryIndex
文件中的httpd.conf
变量,extension_dir = “ext”
文件中未注释的php.ini
在index.php
文件夹中创建htdocs
,当我在浏览器中尝试http://localhost:8080时,它会拒绝访问。
有人可以帮忙吗?我按照http://vitalflux.com/php-install-apache-2-4-php-5-6-windows/
按照说明操作答案 0 :(得分:0)
您必须告诉Apache index.php
是有效的目录索引。如果找不到有效的目录索引文件并禁用目录列表,则会抛出403 Access Denied
。
将此内容添加到httpd.conf
:
DirectoryIndex index.php
请记住重启Apache服务器,以使更改生效。