[root@iZ28lcmnq9qZ /usr/bin]#vim /jl/apache2/conf/httpd.conf
找到Directory参数,在Require all denied前面添加#,然后添加Require all granted。
找到DirectoryIndex index.html,将它替换为DirectoryIndex index.php index.html。
找到如下内容:
在后面添加如下内容:
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
添加完成后,如下图所示。
按下Esc键,然后输入:wq并回车以保存并关闭Apache配置文件。
运行以下命令重启Apache服务。
[root@iZ28lcmnq9qZ /usr/bin]#systemctl restart httpd
经过以上操作步骤后,Apache服务器就可以解释PHP文件。