1. 程式人生 > >wamp本地安裝專案筆記2

wamp本地安裝專案筆記2

(配置域名方法2)

手動修改配置檔案,配置域名

1.新建檔案E:\wamp\www\gao\index.php

2.修改E:\wamp\bin\apache\apache2.4.27\conf\extra\httpd-vhosts.conf

新增一下內容:

<VirtualHost *:80>
   ServerName www.gao.com
   DocumentRoot "e:/wamp/www/gao"
   <Directory  "e:/wamp/www/gao/">
      Options +Indexes +Includes +FollowSymLinks +MultiViews
      AllowOverride All
      Require local
   </Directory>
</VirtualHost>

3.修改C:\Windows\System32\drivers\etc\hosts檔案

   首先複製到桌面在用編輯軟體開啟(因為不能直接修改,可以先備份)

  然後新增以下內容

127.0.0.1   www.gao.com
::1    www.gao.com

儲存,複製到C:\Windows\System32\drivers\etc\中替換原檔案

4重新啟動wamp

5.在瀏覽器輸入www.gao.com

6.成功。