码迷,mamicode.com
首页 > Web开发 > 详细

php 虚拟主机和虚拟目录的配置

时间:2014-12-06 06:41:17      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:software   虚拟主机   website   


虚拟主机  开启httpd-vhosts.conf

conf\extra\httpd-vhosts.conf文件

<VirtualHost 127.0.0.1:80>

 DocumentRoot "D:/website/Apache Software Foundation/Apache2.2/htdocs"

 DirectoryIndex index.html index.htm default.htm

 ServerName www.localhost.com

 ServerAlias www.localhost.com

<Directory /> 

 Options FollowSymLinks

 AllowOverride None 

 Order Allow,Deny

 Allow from all 

</Directory>

</VirtualHost>




#配置虚拟目录

<IfModule dir_module>

    DirectoryIndex index.html index.php

Alias /myblog "D:/myblog"

<Directory "D:/myblog"> 

Order allow,deny 

Allow from all 

</Directory> 

</IfModule>

#Alias

<IfModule dir_module>

    DirectoryIndex index.html 

Alias /my "D:/website_old/Apache2.2/htdocs"

<Directory "D:/website_old/Apache2.2/htdocs">

Order allow,deny

Allow from all

</Directory>

</IfModule>


php 虚拟主机和虚拟目录的配置

标签:software   虚拟主机   website   

原文地址:http://lsq0304.blog.51cto.com/3784028/1586781

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!