我用的是phpStudy搭建的php,如何让局域网内访问我的本地两个网站
1个回答
展开全部
配置一下虚拟主机。开启虚拟主机后就打开Apache文件夹里的\conf\extra\下的httpd-vhosts.conf文件,在这个文件的最后面加代码,注意下面的代码还需要改动一下路径,改为你的网站根目录的路径,如果不成功,记得关闭防火墙:
<VirtualHost
192.168.1.112:80>
DocumentRoot
"D:/web/www"
ServerName
localhost
<Directory
"D:/web/www">
Options
Indexes
FollowSymLinks
DirectoryIndex
index.html
index.php
AllowOverride
all
Order
allow,deny
Allow
from
all
</Directory>
</VirtualHost>
<VirtualHost
192.168.1.112:80>
DocumentRoot
"D:/web/www"
ServerName
localhost
<Directory
"D:/web/www">
Options
Indexes
FollowSymLinks
DirectoryIndex
index.html
index.php
AllowOverride
all
Order
allow,deny
Allow
from
all
</Directory>
</VirtualHost>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询