码迷,mamicode.com
首页 > 其他好文 > 详细

XAMPP 设置虚拟站点

时间:2014-06-17 20:01:44      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:des   style   class   blog   code   http   

1. url 劫持

C:\Windows\System32\drivers\etc\hosts
127.0.0.1 pro

 

 

2. 设置虚拟路径

D:\XAMPP\apache\conf\extra\httpd-vhosts.conf

<VirtualHost *:80>
    DocumentRoot "D:/XAMPP/htdocs"
    ServerName localhost
</VirtualHost>
<VirtualHost *:80>
 ServerName origins
 DocumentRoot "E:/WeEngine/origins"
<Directory "E:/WeEngine/origins"> 
 Options FollowSymLinks IncludesNOEXEC Indexes
 DirectoryIndex index.html index.htm index.php
 AllowOverride all 
 Order Deny,Allow 
 Allow from all 
 Require all granted
</Directory>
</VirtualHost>

 

XAMPP 设置虚拟站点,布布扣,bubuko.com

XAMPP 设置虚拟站点

标签:des   style   class   blog   code   http   

原文地址:http://www.cnblogs.com/gordensong/p/3792259.html

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