Changes

m
texte modifi non affichéé correctement
Line 209: Line 209:     
*At the very end of the file <code>httpd.conf</code>, skip a line and paste the following block of code to tell '''Apache2''' to interpret the files <code>*.php</code> :
 
*At the very end of the file <code>httpd.conf</code>, skip a line and paste the following block of code to tell '''Apache2''' to interpret the files <code>*.php</code> :
 +
 +
*Before PHP 8.0:
    
<syntaxhighlight lang="apacheconf">
 
<syntaxhighlight lang="apacheconf">
Line 216: Line 218:  
</syntaxhighlight>
 
</syntaxhighlight>
   −
*This will tell '''Apache2''' to use the <code>php7_module</code> provided with PHP that we installed earlier to interpret the <code>*.php</code> files.
+
*[https://www.php.net/manual/en/install.windows.apache2.php From PHP 8.0:]
 +
 
 +
<syntaxhighlight lang="apacheconf">
 +
LoadModule php_module "c:/php/php8apache2_4.dll"
 +
<FilesMatch \.php$>
 +
   SetHandler application/x-httpd-php
 +
</FilesMatch>
 +
PHPIniDir "C:/php"
 +
</syntaxhighlight>
 +
 
 +
*This will tell '''Apache2''' to use the <code>phpX_module</code> provided with PHP that we installed earlier to interpret the <code>*.php</code> files.
    
*Save the file <code>httpd.conf</code> ('''File''' > '''Save''' or <kbd>Ctrl</kbd> + <kbd>S</kbd>) and close it.
 
*Save the file <code>httpd.conf</code> ('''File''' > '''Save''' or <kbd>Ctrl</kbd> + <kbd>S</kbd>) and close it.
4

edits