Apache,php7无法解析php文件(浏览器访问php文件直接下载)
今天安装php7,配置好httpd.conf发现无法访问php文件,网上找了的几种解决方法,最后才成功,现在整理一下。
在APACHE中的配置文件httpd.conf中添加AddType application/x-httpd-php .php后,重启APACHE,出现无法访问php的情况。
解决方法是:将AddType部分的代码改成一下格式,最后成功解决
AddType application/x-httpd-php .php
AddType application/x-httpd-php .php .phtml .php3
AddType application/x-httpd-php-source .phps