标签:项目 路径 php 访问 bsp host virtual directory apache2
采用了Wampserver安装了php的运行环境,并且安装在c盘目录下。但是我想把项目放在e盘,并且配置好虚拟目录。
1)directory改成下面的
<Directory />
Options Indexes
AllowOverride None
Order allow,deny
Allow from all
</Directory>
2)在Listen 0.0.0.0:8080(我的监听端口是8080,不是默认的80)下面新增一条记录
Listen 0.0.0.0:8081(监听8081端口)
#Include conf/extra/httpd-vhosts.conf 去掉前面的#。
打开添加
<VirtualHost *:8081>
DocumentRoot "E:/php/xxxt"
ServerName myvirtualhost.com
ErrorLog "logs/myvirtualhost.com-error.log"
CustomLog "logs/myvirtualhost.com-access.log" common
</VirtualHost>
其中E:/php/xxxt的路径必须是全英文的,不能有中文汉字,否则在访问的时候会报错。
3.重启Apache,在浏览器中访问http://localhost:8081/index.php就可以了。
标签:项目 路径 php 访问 bsp host virtual directory apache2
原文地址:https://www.cnblogs.com/goldenland/p/9950718.html