一、apache虚拟主机的配置
1、首先在apache的安装目录下找到conf目录下找到httpd.conf文件
然后搜索hosts找到 把前面的井号去掉即可启动虚拟主机
2、然后在apache的安装目录下找到conf目录下的extra找到httpd-vhosts.conf文件
在文件最后添加类似我下面的配置,详细参数见说明
我这里以myvirtualhost.com为例
#配置我们自己的虚拟主机 <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>
3、在host文件中添加虚拟主机 高亮部分
4、修改完成后重启Apache服务器,然后再浏览器地址栏输入http://myvirtualhost.com即可看到你在该目录下放置的
欢迎页面
#这是文件夹访问权限设置 # <Directory D:/Program Files (x86)/myenv/apache2.2.25/htdocs/zend/myzf/public/> #Indexes 的作用就是当该目录下没有 index.html 文件时,就显示目录结构,去掉 Indexes,Apache 就不会显示该目录的列表了。 #要禁止 Apache 显示目录结构列表,只需将 Option 中的 Indexes 去掉即可。 #MultiViews 使用"MultiViews "搜索,即服务器执行一个隐含的文件名模式匹配,并在其结果中选择。 #设置后,在地址栏内输入index.php 可以显示页面。在地址栏内输入index同样可以显示index.php页面 #【备注:在Indexes前,加 + 代表允许目录浏览;加 – 代表禁止目录浏览。】 # Options -Indexes FollowSymLinks MultiViews #Options FollowSymLinks #是否允许覆盖 为了安全我这里选择不允许 当然如果要使用框架的话就要开启rewrite 这里也要变成允许,具体情况具体分析 #AllowOverride None #允许所有 #Order allow,deny #Allow from all #</Directory>
二、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 下的文件