博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
XAMPP开启虚拟目录
阅读量:6474 次
发布时间:2019-06-23

本文共 1034 字,大约阅读时间需要 3 分钟。

一、修改httpd.conf文件

编辑配置文件:目录:%xampp\apache\conf\httpd.conf#确认以下是否开启Include conf/extra/httpd-vhosts.conf#修改
参数
#AllowOverride none #Require all denied Options All AllowOverride All Require all granted

#配置文本最后加入:

<Directory "D:/web/web1">
  Options Indexes FollowSymLinks Includes ExecCGI
  AllowOverride All
  Order allow,deny
  Allow from all
</Directory>
<Directory "D:/web/web2">
  Options Indexes FollowSymLinks Includes ExecCGI
  AllowOverride All
  Order allow,deny
  Allow from all
</Directory>

二、配置虚拟目录

编辑配置文件:目录:%xampp\apache\conf\extra\httpd-vhosts.conf#加入以下内容:
ServerAdmin web1@dummy-host2.example.com DocumentRoot "D:/web/web1" ServerName www.web1.com ErrorLog "logs/web1-error.log" CustomLog "logs/web1-access.log" common
ServerAdmin web2@dummy-host2.example.com DocumentRoot "D:/web/web2" ServerName www.web2.com ErrorLog "logs/web2-error.log" CustomLog "logs/web2-access.log" common

 

转载于:https://www.cnblogs.com/cnbing/p/6963084.html

你可能感兴趣的文章
0404《构建之法》第四章读后感
查看>>
html之div始终停留在屏幕中间部分
查看>>
AsyncTask的缺陷
查看>>
Spring中jdbcTemplate的用户实例
查看>>
[模板] 快速傅里叶变换/FFT/NTT
查看>>
DecimalFormat 数据格式设置 SimpleDateFormat时间格式的用法介绍 --转载
查看>>
Android 的Margin和Padding属性以及支持的长度单位
查看>>
653. Two Sum IV - Input is a BST
查看>>
HDU ACM 1050 Moving Tables
查看>>
Django templates加载css/js/image等静态资源
查看>>
Eclipse C + GTK2.0环境构筑
查看>>
caffe solver
查看>>
Rhel6-heartbeat+lvs配置文档
查看>>
[CF340D]Bubble Sort Graph/[JZOJ3485]独立集
查看>>
ORACLE分科目统计每科前三名的学生的语句
查看>>
第一次冲刺--查看活动详情用户场景分析
查看>>
0317复利计算的回顾与总结
查看>>
函数对象
查看>>
Sharepoint学习笔记—习题系列--70-573习题解析 -(Q70-Q72)
查看>>
最全最新个税计算公式---今天你税了吗?
查看>>