Home >Backend Development >PHP Problem >php file not parsed

php file not parsed

(*-*)浩
(*-*)浩Original
2019-09-26 10:11:283316browse

apache cannot parse the php file

php file not parsed

I spent an afternoon on Baidu, and the root cause was that a php extension was missing: mod_php

Just restart apache after installation. (Recommended learning: PHP programming from entry to proficiency)

yum install mod_php

Other solutions

Found:

AddType application/x-gzip .gz .tgz

in its Add below:

AddType application/x-httpd-php .php //添加支持对php脚本解析

Find:

<IfModule dir_module>
DirectoryIndex index.html
</IfModule>

Change the middle line to:

DirectoryIndex index.html index.htm index.php //增加对php的索引

The above is the detailed content of php file not parsed. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to run php projectNext article:How to run php project