Home > Backend Development > PHP Tutorial > php 在windows下配置虚拟目录的方法,php虚拟目录_PHP教程

php 在windows下配置虚拟目录的方法,php虚拟目录_PHP教程

WBOY
Release: 2016-07-13 09:44:32
Original
907 people have browsed it

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

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

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

 1 127.0.0.1 www.mydemo.com 

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

 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1048750.htmlTechArticlephp 在windows下配置虚拟目录的方法,php虚拟目录 1.先找到apache的配置文件 httpd.conf 找如如下代码: # Virtual hosts #Include conf/extra/httpd-vhosts.co...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template