Table of Contents
apache和PHP如何整合在一起,apachephp整合
Home php教程 php手册 apache和PHP如何整合在一起,apachephp整合

apache和PHP如何整合在一起,apachephp整合

Jun 13, 2016 am 08:53 AM
apache php

apache和PHP如何整合在一起,apachephp整合

一般安装好PHP之后,apache并不能处理php文件,要想使得php与apache服务器整合在一起,必须修改配置文件,这里我教大家如何配置php安装文件。

方法/步骤

首先在apache的conf目录下的httpd.conf加入如下代码:

LoadModulephp5_module~php安装路径/php5apache2_2.dll

PHPIniDir“~php模块安装路径"

AddTypeapplication/x-httpd-php.php.phtml

这里我对上面的代码简单解释一下,整个代码的意思是让apache载入php处理模块(LoadModulephp5_module),代码中“~php安装路径”是根据你安装php的位置不同而改变,比如说我是在D盘中安装的,所以我的路径是:D:\Myenv\php-5.3.5(注意这里的斜杆是反斜杆“\”,在代码中要改成正斜杆“/”),代码加入的位置就是在httpd.conf中有一大堆的LoadModule下加入即可,如下图所示:

然后你需要检查在你刚刚添加的目录下是否有这个文件“php5apache2_2.dll”,理论上应该在,为了以防万一一定要检查一下,这个文件非常重要,起到了一个桥梁作用。

下一步我们需要指定PHP初始化目录,即代码“PHPIniDir ‘~php模块安装路径'”,这条代码用于指定php的ini文件,该文件会对php进行配置,通俗点说,你需要告诉apache你的php放哪去了,同理我们把刚刚的安装路径替换代码中的“~php模块安装路径”

然后我再给大家解释最后一行代码的意思,“AddTypeapplication/x-httpd-php.php.phtml”这句话的意思就是添加应用类型,用大白话解释就是说,当出现*.php 文件时,php就会启动处理该文件。可以在配置文件中加上注释方便自己理解,如下图:

所以呢,我们需要改动路径的地方有两个,如下图用红色标记部分,把红色部分改成你实际安装php路径即可(注意是正斜杆)

另外对php文件设置也非常重要,在你php安装目录下找到 php.ini-development文件 并将其后缀名改成php.ini,改这个的理由是:我们的php的设置有需要在php.ini修改。如下图:把名字中深蓝色部分删掉即可。

改完之后文件是这个样子的,如下图:

现在我们需要在php.ini中可以指定对应的功能模块,具体方法是将下面代码“

extension_dir="php扩展库路径”添加进你刚刚修改的php.ini文件中去。这样做的目的是为了能够用上php的各种功能强大的库,而“php扩展库路径”在你安装php的文件夹下有个“ext”的文件夹,打开该文件夹里面都是php扩展库。如下图:

现在我们来添加扩展库路径,用你的记事本打开“php.ini”文件,找到“extension_dir”位置,可以用查找来快速定位该位置。如下图:

然后将该位置“extension_dir=‘ext'”换成你php库的路径,以我的为例,我的库路径为:D:/Myenv/php-5.3.5/ext(同样注意是正斜杆),如下图:将蓝色部分替换成你的库路径即可。

最终替换结果如下图:

至此我们的整合已经全部完成,可以测试一下是否成功。测试方法:调用一个简单的php函数,函数代码如下:

<&#63;php

phpinfo();

&#63;>

Copy after login

然后重启你的apache,看是否能使用。

如果你整合成功的话,你就能见到下面震撼的效果了。

如何将apache和PHP整合在一起,通过上文大家的思路是不是更加清晰了,如果对这篇文章还比价满意的话,就点个赞吧

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

CakePHP Quick Guide CakePHP Quick Guide Sep 10, 2024 pm 05:27 PM

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.

See all articles