在電腦上開啓wamp服務後,默認是禁止外部網絡訪問的,若是您想要同一局域網中的設備可以訪問PC上的web項目,則須要對httpd.conf文件進行一些修改。web
通常是在wamp安裝目錄的 bin\apache\apache2.4.23\conf\httpd.conf
,例如:個人電腦wamp安裝在D盤的wamp文件夾,則httpd.conf文件路徑爲D:\wamp\bin\apache\apache2.4.23\conf\httpd.conf
apache
找到本身httpd.conf文件了嗎?若是找到了,咱們就繼續吧!!瀏覽器
i、 在244行左右,將:網絡
<Directory /> AllowOverride none Require all denied </Directory>
改成:ide
<Directory /> AllowOverride none #Require all denied Require all granted </Directory>
ii、在280行左右,在 Require local
後面加上一句 Require all granted
ui
即:命令行
onlineoffline tag - don't remove Require local Require all granted
iii、打開wampserver3.0.4安裝目錄,找到」httpd-vhosts「文件,將Require local 修改成:Require all grantedcode
即: server
<Directory "E:/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
#Require local
Require all granted
</Directory>ip
到此,代碼部分就修改完畢了,記得重啓一下Apache服務。
win+R
輸入cmd,打開命令行,在命令行輸入ipconfig,查看此PC的ip這時候咱們就能夠經過其餘設備訪問本機的web項目了!