PHP在本机设置虚拟主机
时间:2023-07-15 22:03:01 | 来源:网站运营
时间:2023-07-15 22:03:01 来源:网站运营
PHP在本机设置虚拟主机:
- 找到C:/Windows/System32/drivers/etc下的hosts文件进行修改,在文件最后添加
127.0.0.1 www.tp5.com
2.
打开httpd.conf文件,修改
#Include conf/extra/httpd-vhosts.conf 把#号去掉
打开此处文件,修改
添加如下内容:
<VirtualHost *:80>
ServerName www.tp5.com
DocumentRoot D:/phpStudy/WWW/tp5/public
<Directory "D:/phpStudy/WWW/tp5/public">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
Require all granted
</Directory>
</VirtualHost>
重点:重启phpstudy软件,然后再重启服务再在浏览器中输入:
http://www.tp5.com出现如上图,就代表配置成功了