windows 安装php7.3 配合Apache2.4

1、下载Thread Safe版本的php7.3,因为只有Thread Safe版本的才有php7apache2_4.dll

2、进入Apache的conf文件夹,编辑httpd.conf,在末尾添加:

#php7 support
PHPIniDir "你的php路径"
LoadModule php7_module "你的php路径/php7apache2_4.dll"
AddType application/x-httpd-php .php .html .htm
# configure the path to php.ini

3、修改默认文档


    DirectoryIndex index.php index.html index.htm

4、进入Apache的htdocs文件夹,新建一个index.php文件,代码:

5、访问,如果出现下图,说明安装成功了:

windows 安装php7.3 配合Apache2.4_第1张图片

你可能感兴趣的:(php,windows,Apache)