安装Apache配置虚拟目录
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装Apache配置虚拟目录相关的知识,希望对你有一定的参考价值。
首先在apache的安装目录下找到conf目录下找到httpd.conf文件
然后搜索hosts找到 把前面的井号去掉即可启动虚拟主机
2、然后在apache的安装目录下找到conf目录下的extra找到httpd-vhosts.conf文件
- #配置我们自己的虚拟主机
- <VirtualHost *:80>
- #修改文档根路径
- DocumentRoot "D:/Program Files (x86)/myenv/apache2.2.25/htdocs"
- #主机名称
- ServerName myvirtualhost.com
- #欢迎页面
- DirectoryIndex index.html
- <Directory "D:/Program Files (x86)/myenv/apache2.2.25/htdocs">
- Options -Indexes FollowSymLinks
- AllowOverride None
- Order allow,deny
- Allow from all
- </Directory>
- #错误日志存放位置
- ErrorLog "logs/myvirtualhost.com-error.log"
- CustomLog "logs/myvirtualhost.com-access.log" common
- </VirtualHost>
-
在host文件中添加虚拟主机 高亮部分
- 二、apache虚拟目录的配置
1、首先在apache的安装目录下找到conf目录下找到httpd.conf文件
搜索DocumentRoot 找到下面的位置 自定义的时候可以把这个关闭 ,不关闭好像也没影响
2、找到<IfModule>这块,加入下面的代码
- # 虚拟目录,访问D盘下面的web目录
- <IfModule dir_module>
- # 设置缺省载入页面
- DirectoryIndex index.html index.htm index.php
- # 设置站点别名,别名与访问路径是相关的,取任何名称都可以(除特殊)
- Alias /myweb "D:/web"
- <Directory D:/web>
- # 设置访问权限
- Order allow,deny
- Allow from all
- </Directory>
- </IfModule>
修改完成后重启Apache服务器 在浏览器中输入:http://localhost/myweb/xx.php 来访问 D:/web 下的文件
以上是关于安装Apache配置虚拟目录的主要内容,如果未能解决你的问题,请参考以下文章