首页 > 其他 > 详细

XAMPP 设置虚拟站点

时间:2014-06-17 20:02:09      阅读:403      评论:0      收藏:0      [点我收藏+]

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 设置虚拟站点

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!