We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fef9ca commit 3844821Copy full SHA for 3844821
readme.md
@@ -52,16 +52,11 @@
52
53
2. Update Apache configuration to contain something like this:
54
~~~apache
55
- LoadModule php5_module "C:/web/php/active/php5apache2_4.dll"
+ LoadModule php${PHP_VERSION_MAJOR}_module "C:/web/php/active/php${PHP_VERSION_MAJOR}apache2_4.dll"
56
AddHandler application/x-httpd-php .php
57
PHPIniDir "C:/web/php/active"
58
~~~
59
60
-3. You can use `PHP_VERSION_MAJOR` variable in Apache configuration file. This is useful when you switch between PHP 5 and PHP 7 versions:
61
- ~~~apache
62
- LoadModule php${PHP_VERSION_MAJOR}_module "C:/web/php/active/php${PHP_VERSION_MAJOR}apache2_4.dll"
63
- ~~~
64
-
65
66
### Nginx + PHP FastCGI
67
0 commit comments