>백엔드 개발 >PHP 튜토리얼 >php 在windows下配置虚拟目录的步骤

php 在windows下配置虚拟目录的步骤

WBOY
WBOY원래의
2016-06-13 12:23:59976검색

php 在windows下配置虚拟目录的方法

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 文件,用记事本打开,在末尾加入以下代码:

<span style="color: #008080;"> 1</span> <virtualhost><span style="color: #008080;"> 2</span> ServerName www.mydemo.<span style="color: #000000;">com</span><span style="color: #008080;"> 3</span> DocumentRoot "D:/mydemo"<span style="color: #008080;"> 4</span> <directory><span style="color: #008080;"> 5</span> <span style="color: #000000;">Options FollowSymLinks IncludesNOEXEC Indexes</span><span style="color: #008080;"> 6</span> DirectoryIndex index.html index.htm <span style="color: #0000ff;">default</span>.htm index.php <span style="color: #0000ff;">default</span>.php index.cgi <span style="color: #0000ff;">default</span>.cgi index.pl <span style="color: #0000ff;">default</span>.pl index.<span style="color: #000000;">shtml</span><span style="color: #008080;"> 7</span> <span style="color: #000000;">AllowOverride Options FileInfo</span><span style="color: #008080;"> 8</span> Order Deny,<span style="color: #000000;">Allow</span><span style="color: #008080;"> 9</span> <span style="color: #000000;">Allow from all</span><span style="color: #008080;">10</span> </directory><span style="color: #008080;">11</span> </virtualhost>

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

 1 127.0.0.1 www.mydemo.com 

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

 

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.