摘要:環境集成環境文件目錄目錄入口文件第一步修改文件,將配置文件包含進來點擊,用記事本打開,定位到此處。在第一個例子中只改動了和,這個配置保證了我們在開啟后仍然可以訪問目錄。
環境
windows7 , wampserver集成環境 , thinkphp5.0文件
wamp目錄:D:/wamp/www
thinkphp目錄:F:/tp5
thinkphp入口文件:F:/tp5/public/index.php
第一步:修改http.conf文件,將http-vhosts.conf配置文件包含進來
點擊wamp-apache-http.conf,用記事本打開,定位到此處。
# Virtual hosts #Include conf/extra/httpd-vhosts.conf 改為 # Virtual hosts Include conf/extra/httpd-vhosts.conf
注意:不要去掉第一個#號,否則wamp無法正常運行
第二步:配置http-vhosts.conf
點擊wamp-apache-http-vhosts.conf,用記事本打開,全選粘貼以下內容。
# VirtualHost example: # Almost any Apache directive may go into a VirtualHost container. # The first VirtualHost section is used for all requests that do not # match a ServerName or ServerAlias in anyblock. # ServerAdmin webmaster@dummy-host.example.com DocumentRoot "D:wampwww" ServerName localhost ServerAlias www.dummy-host.example.com ErrorLog "logs/localhost-error.log" CustomLog "logs/localhost-access.log" common ServerAdmin webmaster@dummy-host2.example.com DocumentRoot "F: p5public" ServerName tp5.com ErrorLog "logs/tp5.com-error.log" CustomLog "logs/tp5.com-access.log" common Require all granted
在第一個例子中只改動了servername和documentRoot,這個配置保證了我們在開啟vhost后仍然可以訪問www目錄。
在第二個例子中,除了修改serverName和documentRoot以外,還添加了Directory那句話,如果不添加這句話,當我們訪問tp5.com的時候會報403權限的錯誤。
注意:
DocumentRoot "F: p5public" #填寫入口文件所在的文件夾 ServerName tp5.com #用tp5.com來訪問這個網站入口文件
第三步:修改C:WindowsSystem32driversetchosts文件
在最后一行加入
127.0.0.1 tp5.com
最后重啟wamp,在瀏覽器輸入tp5.com
如果看到這樣的頁面就成功了:)
一鍵操作
點擊wamp主頁的Tool欄目下的Add a Virtual Host,可以幫助你一鍵添加vhost
但是訪問wamp主頁時頁面出現如下警告(暫不清楚原因):
The number ofdoes not match the number of ServerName in d:/wamp/bin/apache/apache2.4.23/conf/extra/httpd-vhosts.conf file The number of 參考:wamp環境下配置vhost
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/28758.html
摘要:第二步繼續找到這一文件下的和分別修改成和然后保存。第三步繼續查找這一文件,在和的中間,這行的下面,加一句。如果這里還有和,在前面加上把它們注釋掉。 Wampsever2.5 配置laravel默認站點 很多朋友都想在自己的電腦上安裝個服務器然后自己做網站,下面我就分享一下自己把wampsever2.5的默認站點配置成imlooke.com的做法吧!例子中我將把默認的localhost主...
閱讀 2100·2021-11-11 16:55
閱讀 3171·2021-10-11 10:58
閱讀 3038·2021-09-13 10:28
閱讀 3967·2021-07-26 23:57
閱讀 1005·2019-08-30 15:56
閱讀 1331·2019-08-29 13:15
閱讀 1258·2019-08-26 18:18
閱讀 1266·2019-08-26 13:44