1.先找到apache的配置文件 httpd.conf 找如如下代码:

# Virtual hosts
#Include conf/extra/httpd-vhosts.conf

把# Include conf/extra/httpd-vhosts.conf 去掉#号,如下:

Include conf/extra/httpd-vhosts.conf

保存。

2.打开 Apache 的 conf 目录下的  extra 文件夹下的  httpd-vhosts.conf 文件,用记事本打开,在末尾加入以下代码:

 1 <VirtualHost *:80>
 2 ServerName www.mydemo.com
 3 DocumentRoot "D:/mydemo"
 4 <Directory "D:/mydemo">
 5 Options FollowSymLinks IncludesNOEXEC Indexes
 6 DirectoryIndex index.html index.htm default.htm index.php default.php index.cgi default.cgi index.pl default.pl index.shtml
 7 AllowOverride Options FileInfo
 8 Order Deny,Allow
 9 Allow from all
10 </Directory>
11 </VirtualHost>

3.再到C:->Windows->System32->drivers->etc目录,打开hosts文件。
在末尾添加如下代码:

 1 127.0.0.1 www.mydemo.com 

然后再创建D:\mydemo目录
再然后重启一下apache服务器。
在浏览器输入www.mydemo.com看看

 

相关文章:

  • 2021-10-23
  • 2021-04-04
  • 2021-12-15
  • 2022-12-23
  • 2021-11-30
  • 2022-12-23
  • 2021-04-10
  • 2021-12-15
猜你喜欢
  • 2021-06-27
  • 2022-01-27
  • 2021-08-03
  • 2022-03-03
  • 2021-08-03
  • 2022-01-07
  • 2021-07-29
相关资源
相似解决方案