Home > Article > Backend Development > Where is the php processing module of apache?
php7_module is the name of the module used by Apache to load the PHP preprocessor.
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)
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(); ?>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.
By the way, you also need to make sure that the web page has this thing: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!