php 在windows下配置虚拟目录的方法介绍
先打开Apache的conf目录下的httpd.conf文件,在末尾添加如下代码:
再到C:->Windows->System32->drivers->etc目录,打开hosts文件。
在末尾添加如下代码:
然后再创建D:\mydemo目录
再然后重启一下apache服务器。
在浏览器输入www.mydemo.com看看
代码如下:
<VirtualHost *:80> ServerName www.mydemo.com DocumentRoot "D:/mydemo" <Directory "D:/mydemo"> Options FollowSymLinks IncludesNOEXEC Indexes DirectoryIndex index.html index.htm default.htm index.php default.php index.cgi default.cgi index.pl default.pl index.shtml AllowOverride Options FileInfo Order Deny,Allow Allow from all </Directory> </VirtualHost>
再到C:->Windows->System32->drivers->etc目录,打开hosts文件。
在末尾添加如下代码:
代码如下:
127.0.0.1 www.mydemo.com
然后再创建D:\mydemo目录
再然后重启一下apache服务器。
在浏览器输入www.mydemo.com看看
相关推荐
zyyjay 2020-11-09
xuebingnan 2020-11-05
samtrue 2020-11-22
stefan0 2020-11-22
yifangs 2020-10-13
songshijiazuaa 2020-09-24
hebiwtc 2020-09-18
天步 2020-09-17
83911535 2020-11-13
whatsyourname 2020-11-13
zhouyuqi 2020-11-10
Noneyes 2020-11-10
mathchao 2020-10-28
王志龙 2020-10-28
wwwsurfphpseocom 2020-10-28
diskingchuan 2020-10-23
savorTheFlavor 2020-10-23