windows下PHP与Apache的安装配置
1、下载 安装 apache:官网 http://httpd.apache.org/download.cgi#apache24下载httpd-2.2.25-win32-x86-no_ssl.msi并 安装 2、下载 安装 PHP:官网http://windows.php.net/download/#php-5.4下载 php-5.4.19-Win32-VC9-x86.zip 并解压的E:\PHP目录 3、 配置
1、下载安装apache:官网 http://httpd.apache.org/download.cgi#apache24 下载httpd-2.2.25-win32-x86-no_ssl.msi并安装
2、下载安装PHP:官网http://windows.php.net/download/#php-5.4 下载 php-5.4.19-Win32-VC9-x86.zip 并解压的E:\PHP目录
3、配置php
在 ZIP 包中有两个 ini 文件,php.ini-development和 php.ini-production。官方手册中建议使用 php.ini-production,复制所选择的php.ini-production 并将其重命名为 php.ini。比如我把将 php.ini-development复制到E:\php,并命名为php.ini 。
php.ini 中正确设定了extension_dir 和 doc_root 指令的值。
这些指令依赖于 PHP 被安装的系统。打开php.ini 文件,搜索“extension_dir”,将这里的 extensions_dir 的值设置成 E:/php/ext 。即:extensions_dir = E:/php/ext 。
然后在php.ini中搜索“doc_root”,这个是你的WEB根目录。Apache的 doc_root 默认是安装目录的 htdocs 文件夹,比如我的是 E:\Program Files\Apache Software Foundation\Apache2.2\htdocs,所以我写的例子是:doc_root = E:\Program Files\Apache Software Foundation\Apache2.2\htdocs。
4、配置Apache
将以下三行加入到 Apache 的 httpd.conf 配置文件中以设定 Apache 2.x 的 PHP 模块:
# 对 PHP 5 用这两行:
LoadModule php5_module "E:\PHP\php5apache2_2.dll"
AddType application/x-httpd-php .php# 配置 php.ini 的路径
PHPIniDir "E:\PHP" //PHP的配置路径
注意,PHP 路径换成你自己的路径。特别要注意的是,Apache2.2版本要用 php5apache2_2.dll 。
至此,整个Apache下配置PHP完成,你可以建一个包含phpinfo()函数的php文件index.php,测试PHP在 Apache 下是否配置成功。测试文件内容如下:
echo phpinfo();
?>
将此文件index.php放到apache的web根目录E:\Program Files\Apache Software Foundation\Apache2.2\htdocs下 在浏览其中输入http://localhost/index.php进行测试

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











IIS and PHP are compatible and are implemented through FastCGI. 1.IIS forwards the .php file request to the FastCGI module through the configuration file. 2. The FastCGI module starts the PHP process to process requests to improve performance and stability. 3. In actual applications, you need to pay attention to configuration details, error debugging and performance optimization.

Multiple calls to session_start() will result in warning messages and possible data overwrites. 1) PHP will issue a warning, prompting that the session has been started. 2) It may cause unexpected overwriting of session data. 3) Use session_status() to check the session status to avoid repeated calls.

NGINX and Apache each have their own advantages and disadvantages, and the choice should be based on specific needs. 1.NGINX is suitable for high concurrency scenarios because of its asynchronous non-blocking architecture. 2. Apache is suitable for low-concurrency scenarios that require complex configurations, because of its modular design.

AI can help optimize the use of Composer. Specific methods include: 1. Dependency management optimization: AI analyzes dependencies, recommends the best version combination, and reduces conflicts. 2. Automated code generation: AI generates composer.json files that conform to best practices. 3. Improve code quality: AI detects potential problems, provides optimization suggestions, and improves code quality. These methods are implemented through machine learning and natural language processing technologies to help developers improve efficiency and code quality.

Apache remains important in today's technology ecosystem. 1) In the fields of web services and big data processing, ApacheHTTPServer, Kafka and Hadoop are still the first choice. 2) In the future, we need to pay attention to cloud nativeization, performance optimization and ecosystem simplification to maintain competitiveness.

Apache is an open source web server software that is widely used in website hosting. Installation steps: 1. Install using the command line on Ubuntu; 2. The configuration file is located in /etc/apache2/apache2.conf or /etc/httpd/conf/httpd.conf. Through module extensions, Apache supports static and dynamic content hosting, optimizes performance and security.

session_start()iscrucialinPHPformanagingusersessions.1)Itinitiatesanewsessionifnoneexists,2)resumesanexistingsession,and3)setsasessioncookieforcontinuityacrossrequests,enablingapplicationslikeuserauthenticationandpersonalizedcontent.

Handling high DPI display in C can be achieved through the following steps: 1) Understand DPI and scaling, use the operating system API to obtain DPI information and adjust the graphics output; 2) Handle cross-platform compatibility, use cross-platform graphics libraries such as SDL or Qt; 3) Perform performance optimization, improve performance through cache, hardware acceleration, and dynamic adjustment of the details level; 4) Solve common problems, such as blurred text and interface elements are too small, and solve by correctly applying DPI scaling.
