Home  >  Article  >  Backend Development  >  What to do if linux apache does not parse php

What to do if linux apache does not parse php

藏色散人
藏色散人Original
2020-08-10 09:19:254575browse

The solution to the problem that linux apache does not parse php: first use the find command to find the apache configuration file; then execute the statement "#find / -name "httpd.conf"" in the root directory; finally modify "httpd.conf ” file.

What to do if linux apache does not parse php

Recommendation: "PHP Video Tutorial"

linux does not work under php Solution to parsing

There was no test after installing php last time. Recent tests found that the php code was not executed and was not parsed. The performance was that the source code was returned

Test file test .php

The code is

<?php
        phpinfo();
?>

should return the php information page, but only the source code is returned. The troubleshooting information is as follows:

1.apache does not add the corresponding php type. Therefore, php script parsing is not supported

Solution: Add the corresponding type in the configuration file

Find the apache configuration file: If you know the location, find it yourself. If you don’t know the location, try using the find command.

Execute in the root directory: #find / -name "httpd.conf"

Modify httpd.conf and add a line to the file: AddType application/x-httpd-php .php

2. There is no index for php. Without the support of this index, web pages written in php cannot be parsed.

Solution: Add the corresponding index in the configuration file

The method to find the configuration file is the same as above, find DirectoryIndex index.html

Change to DirectoryIndex index.html index.htm index.php

3. Turn on the firewall

Use the command: #getenforce

to check the status of the firewall. If Enforcing is on, please turn it off in the configuration file.

In the /etc/selinu directory, modify enforcing in the config is disabled

4. The php5_module module is not loaded

Solution: Add module

Add in the configuration file: LoadModule php5_module modules/libphp5.so

Finally restart the machine.

At this point, there should be no problem. Retest, you can return php information

The above is the detailed content of What to do if linux apache does not parse php. 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