Home > Backend Development > PHP Problem > Where is the php processing module of apache?

Where is the php processing module of apache?

(*-*)浩
Release: 2023-02-23 19:44:01
Original
3508 people have browsed it

php7_module is the name of the module used by Apache to load the PHP preprocessor.

Where is the php processing module of apache?

The module file of the PHP preprocessor (that is, php7apache2_4.dll) is in the PHP installation directory, that is, in Your php (mine is called php) in the same folder as apache is in the file, as shown in the figure (recommended learning: PHP programming from entry to proficiency)

Where is the php processing module of apache?

The sign of successful integration is to create a php file in Apache24\htdocs. It can be called anything. Here we take test as an example.

The content is

<?php phpinfo(); ?>
Copy after login

After saving and exiting, use a browser to access http://localhost/test.php. If the following picture appears, the integration is successful.

It’s quite simple to say, but it won’t be that simple to do. A small mistake may lead to failure, so you have to be patient. Where is the php processing module of apache?

By the way, you also need to make sure that the web page has this thing:

Where is the php processing module of apache?

The above is the detailed content of Where is the php processing module of apache?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template