第一步:
開啟apace的安裝檔案的所在地,到conf目錄下找到htpd.conf,並雙擊開啟。
將516行前的#號去掉
第二步:
開啟windows資料夾下面的system32下的drivers下面的etc資料夾,在etc檔案下雙擊開啟hosts
我在電腦裡面的檔案位置c:\windows\system32\drivers\etc
可以加入你自己的虛擬網域名稱,例如127.0.0.2 o2o.xue.com
第三步:
找到你自己apache目錄下 apache\conf\extra\httpd-vhosts.conf
這裡第44行到50行是新加的虛擬網域名稱位置
virtualhost 這裡需要配置你的網域名稱和你的hosts檔案中的一致即可
serveradmin 你自己定的網域名稱位址
documentroot 你專案的入口
servername 你自己定的網域名稱位址
errorlog logs/你的網域名稱位址-error.log
customlog logs/你的網域名稱位址-access.log
第四步:
重啟apache伺服器之後,訪問即可,例如:
PHP 配置虛擬網域名稱訪問
本內容分以下幾個步驟 1 首頁我們得找到host檔案 這個檔案在c盤中 windows system32 drivers etc hosts 在該檔案中插入 php view plain copy print?localhost name resolution is handled within d...
PHP單機發布時的虛擬網域名稱配置
配置虛擬網域名稱,避免冗長的路徑,順便把index.php也隱藏掉,這裡我用的是thinkphp框架。1.vim etc hosts 把虛擬網域名稱新增進去。例如我這裡最簡單的用tp5.com 代替。那就加上一行 127.0.0.1 tp5.com 2.在 etc apache2 apache2.c...
php學習 本地配置虛擬網域名稱
整合環境phpstudy apache php5.4 apache配置虛擬網域名稱首先是在httpd conf裡注釋掉 開啟vhost conf serveradmin admin phpstudy.net documentroot 根目錄 servername 網域名稱 options index...