好久沒搭環境了,這次還算順利。
先來回顧一下網站運作的原理。
OK,進入正題,本次搭建環境wamp版本如下:
Apache24:httpd-2.4.26-x64-vc11
php: php-5.6.30-Win32-VC11-x64
mysql:mysql-installer-community-5.5.56
1.資料夾路徑如下:
#(因設定檔httpd.conf中多處預設路徑為Apache24,方便起見資料夾名稱不做改動)
2.Apache安裝
#下載後解壓縮至Apache24
#準備Apache執行環境Visual C++ 2012
#進入指令提示符cmd執行指令查看是否可執行
#保持cmd遊標閃爍狀態,即正在運作。測試網址列 http://localhost,顯示預設首頁即表示可執行。
大部分情況,我們要把Apache當作Windows伺服器,故需要安裝Apache
在cmd中,上述路徑下,httpd -k install httpd -k start
#此時已在電腦服務中加入此服務。
為了使得在任何地方都可透過 httpd.exe執行服務,需要新增環境變數。系統---進階系統設定---環境變數。
3.PHP安裝
#下載並解壓縮至php資料夾,nts版本不含php5apache2_4.dll文件,無法被Apache加載,此處選擇ts版本。
為了能在cmd根目錄下執行 php.exe,先設定環境變數。
設定環境變數之後,可在cmd根目錄下執行指令php.exe -f php檔案路徑,來執行PHP文件,如
4d16fbd4999742aa59078e9f09fbc7c7
# 則在cmd模式下會顯示
12345678910
*php可獨立運作。
4.設定httpd.conf,使Apache可處理php
httpd.exe -M
LoadModule php5_module D:/wamp/php/php5apache2_4.dll PHPIniDir "D:/wamp/php" AddType application/x-httpd-php .php .html .htm
5.設定php.ini,使其可載入其他模組
修改时区 date.timezone=PRC 修改加载模块的路径 extension_dir = "D:/wamp/php/ext" 选择要加载的模块并去掉分号 extension=php_mysql.dll extension=php_mysqli.dll等等
php.exe -M
6.設定虛擬主機
#Virtual hosts Include conf/extra/httpd-vhosts.conf
添加: <VirtualHost *:80> DocumentRoot "G:/color" ServerName color.com ErrorLog "logs/color.log" CustomLog "logs/color.log" common </VirtualHost>
<Directory /> AllowOverride none # Require all denied </Directory> 缺少这一步,会显示 403 Forbidden
選擇MSI Installer)
C:\>net stop mysql MySQL 服务正在停止. MySQL 服务已成功停止。 C:\>net start mysql MySQL 服务正在启动. MySQL 服务已经成功启动。
C:\>mysql.exe -hlocalhost -uroot -proot Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.5.56 MySQL Community Server (GPL) Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql>
以上是詳解wamp搭建實例教程的詳細內容。更多資訊請關注PHP中文網其他相關文章!