php运行不了结果 网页拒绝访问
发布网友
发布时间:2022-04-06 06:49
我来回答
共1个回答
热心网友
时间:2022-04-06 08:19
apache2.2的httpd配置中需要将PHP设置为可识别的脚本类型。
在httpd.conf中配置
LoadMole php5_mole "c:/php/php5apache2_2.dll"
AddType application/x-httpd-php .php
AddType application/x-httpd-php .phtml
PHPIniDir "c:/php"
然后重启apache2.2
--------------------------
http://localhost 下载 index.html是因为默认目录index使用的 index.html
在httpd.conf中修改
DirectoryIndex index.html变为下面内容
DirectoryIndex index.php index.html