Apache 2.4 添加模块
Apache 2.4 addmodule
当我将此行添加到 Apache 时,我的 Apache 没有启动,但是当我在 httpd.conf
上删除此行时,apache 启动了,我不知道为什么。
The line code ;
# Add to the end of the LoadModule section
LoadModule php7_module "C:/php/php7apache2_4.dll"
AddModule mod_php7.c # << This Line !!!
# Add this line inside the <IfModule mod_mime.c> conditional brace
AddType application/x-httpd-php .php
# For syntax highlighted .phps files, also add
#AddType application/x-httpd-php-source .phps
AddModule
自 Apache 1.3 以来就不再是指令的名称。您可能正在遵循一些过时的指南。
当我将此行添加到 Apache 时,我的 Apache 没有启动,但是当我在 httpd.conf
上删除此行时,apache 启动了,我不知道为什么。
The line code ;
# Add to the end of the LoadModule section
LoadModule php7_module "C:/php/php7apache2_4.dll"
AddModule mod_php7.c # << This Line !!!
# Add this line inside the <IfModule mod_mime.c> conditional brace
AddType application/x-httpd-php .php
# For syntax highlighted .phps files, also add
#AddType application/x-httpd-php-source .phps
AddModule
自 Apache 1.3 以来就不再是指令的名称。您可能正在遵循一些过时的指南。