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

本篇文章在是对在windows下配置虚拟目录的方法进行了详细的分析介绍,需要的朋友参考下

先打开Apache的conf目录下的httpd.conf文件,在末尾添加如下代码:

复制代码 代码如下:


<VirtualHost *:80>
 ServerName
 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


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

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/1ccb97e1341e1598a36339a69e4f66ad.html