前言:WAMP在使用時常常需要進行自訂的配置,這裡介紹幾個常用的配置。
如下圖,開啟httpd.conf檔案。
找出DocumentRoot(兩處),做以下修改:
#demo为自定义网站目录,下面不再说明DocumentRoot "f:/demo"
重啟設定服務。
測試:開啟瀏覽器,輸入localhost/test.php(test.php為demo目錄下新建的測試檔)
#修改wamp安裝目錄下的wampmanager.ini檔案:
[Menu.Left]...... Type: item; Caption: "www 目录"; Action: shellexecute; FileName: "F:/wamp/www"; Glyph: 2替换为: Type: item; Caption: "demo 目录"; Action: shellexecute; FileName: "F:/demo"; Glyph: 2......
再修改wamp安裝目錄下的wampmanager.tpl檔案:
[Menu.Left]...... Type: item; Caption: "${w_wwwDirectory}"; Action: shellexecute; FileName: "${wwwDir}"; Glyph: 2替换为: Type: item; Caption: "${demo 目录}"; Action: shellexecute; FileName: "${F:/demo}"; Glyph: 2......
重新啟動設定服務。
開啟wamp安裝目錄下的bin\apache\apache2.4.9\conf\extra\httpd-vhosts.conf檔。 (虛擬目錄設定檔)
新增以下程式碼:
//添加站点,test01和test02目录下放置网站文件ServerAdmin webmaster@dummy-host2.example.com //邮箱地址,可不写 DocumentRoot "f:/demo/test01" //网站文件目录 ServerName test01.com //主机名 ErrorLog "logs/dummy-host2.example.com-error.log" //错误日志,可不写 CustomLog "logs/dummy-host2.example.com-access.log" common //日常日志,可不写 ServerAdmin webmaster@dummy-host2.example.com //邮箱地址,可不写 DocumentRoot "f:/demo/test02" //网站文件目录 ServerName test02.com //主机名 ErrorLog "logs/dummy-host2.example.com-error.log" //错误日志,可不写 CustomLog "logs/dummy-host2.example.com-access.log" common //日常日志,可不写
如上文,再開啟httpd.conf文件,做如下修改:
# Virtual hosts#Include conf/extra/httpd-vhosts.conf替换为# Virtual hostsInclude conf/extra/httpd-vhosts.conf
//有些版本没有,则不用修改Deny from all Allow from 127.0.0.1替换为: Allow from all#Allow from 127.0.0.1
重新啟動服務
開啟C:\Windows\System32\drivers\etc\hosts,新增:
//添加站点127.0.0.1 test01.com127.0.0.1 test02.com
測試:開啟瀏覽器,輸入test01.com和test02.com。 (需要事先在這兩個目錄下寫好測試文件)
apache預設為80端口,如被佔用,則需要修改端口號。
如上文,開啟httpd.conf文件,做以下修改:
Listen 80替换为:Listen 8080(或改成其它未被占用端口号)
ServerName localhost:80替换为:ServerName localhost:8080(与上面修改的端口号要一致)
重啟服務。
測試:localhost:8080/test.php(前面建造的測試文件,在demo目錄下)。
以上是詳細介紹WAMP常用環境配置範例程式碼9(圖)的詳細內容。更多資訊請關注PHP中文網其他相關文章!