`
neeleon
  • 浏览: 186000 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

apache安装

    博客分类:
  • PHP
 
阅读更多
提一个需求:
我的apache是安装在 c盘 , 但是出现c 盘没有空间,d盘有更多空间.
,能不能把d盘的一个文件夹下的网页html, php ,当做网站管理
看看如何完成这个功能:
1.      添加虚拟目录的节点
#配置虚拟目录
<IfModule dir_module>
    #direcotory相当于是欢迎页面
    DirectoryIndex index.html index.htm index.php
    #你的站点别名
    Alias /myblog "D:/myblog"
   <Directory d:/myblog>
   #这是访问权限设置
   Order allow,deny
   Allow from all
   </Directory>
</IfModule>
2.      注销documentroot路径
#DocumentRoot "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs"
3.      测试
http://localhost/myblog/news.html
4.      如何设置欢迎页面
DirectoryIndex news.html index.html index.htm index.php
 
分享到:
评论

相关推荐

    apache安装与配置文档

    Apache 安装与配置文档 Apache 安装与配置文档是 Apache 服务器的安装和配置指南。本文档将指导用户从安装 Apache 到配置 Apache 的整个过程。 一、Apache 安装 Apache 安装需要使用 root 用户进行安装。在安装...

    apache安装配置详解

    apache安装配置详解,希望能帮助到每一位开发人员

    linux Apache安装(图文)

    下载适用于Linux的Apache安装程序。通常,官方提供的安装程序是tar.gz压缩格式。例如,你可能会找到名为httpd-version.tar.gz的文件,其中version是Apache的特定版本号。 安装过程分为以下几个步骤: 1. **解压...

    linux中apache安装与配置

    本文将详细介绍如何在Linux环境中安装和配置Apache,包括所需的依赖包和基本步骤。 首先,让我们从安装Apache开始。在大多数Linux发行版中,你可以通过包管理器来安装Apache。例如,在Ubuntu或Debian上,使用`apt`...

Global site tag (gtag.js) - Google Analytics