WAMP多站點配置,更改服務器端口

修改apache.conf的配置文件 設置保存路徑
本來的路徑:DocumentRoot "D:/wamp/www/"
修改成本身定義的路徑:D:\all_code\php
 
查詢:
<Directory "D:\all_code\php">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
 路徑也須要一塊兒修改成自定義的路徑D:\all_code\php
 
 
不一樣的版本須要多配置
這樣還不夠:
Wampmanager.ini
搜索欄查詢 Menu.left
 
多站點的配置(至少兩個)
 
配置站點須要找到 apache的虛擬配置文件
路徑:D:\wamp\bin\apache\apache2.4.9\conf\extra\httpd-vhosts.conf
 
 
<VirtualHost *:80>
    ServerAdmin webmaster@dummy-host2.example.com
    DocumentRoot "D:\all_code\php\demo01"
    ServerName dummy-host2.example.com
    ErrorLog "logs/dummy-host2.example.com-error.log"
    CustomLog "logs/dummy-host2.example.com-access.log" common
</VirtualHost>
 
藍色爲修改
<VirtualHost *:80>
    ServerAdmin webmaster@dummy-host2.example.com
    DocumentRoot "D:\all_code\php\demo01"
    ServerName test02.com
    ErrorLog "logs/dummy-host2.example.com-error.log"
    CustomLog "logs/dummy-host2.example.com-access.log" common
</VirtualHost>
 
可是這樣還不夠!
最後須要去配置apache.conf配置文件, 默認是關閉的
 查找關鍵字
httpd-vhost
 
# Virtual hosts
#Include conf/extra/httpd-vhosts.conf(打開)
 
還有apache默認不拒絕其餘機子訪問本機子上的目錄文件, 因此也須要開啓
 

 
 
最後須要去配置下C:
C:\Windows\System32\drivers\etc
127.0.0.1      test01.com
127.0.0.1      test02.com
 
 
有時候端口號被佔用須要更改端口號
Listen 0.0.0.0:80
 
ServerName localhost:80
 
更改造和處就能夠了
 
Ok大工搞成, !
相關文章
相關標籤/搜索