zoukankan      html  css  js  c++  java
  • Apache 虚拟目录和默认首页的设置

    Apache虚拟目录和默认首页的设置,用apache服务器的朋友必须要懂的。

    虚拟目录
    1.找到"conf/httpd.conf" 文件
    2.在节点:<IfModule alias_module>里增加
    Alias /aidd2008 "D:/php/web/aidd2008"
    其中 aidd2008 是你想要访问的虚拟目录; D:/php/web/aidd2008 为物理路径,以[/]代替[]"
    我们就在</IfModule>后面接着加:
    复制代码 代码如下:

    <Directory "D:/php/web/aidd2008">
    Options Indexes MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>

    (*)aidd2008 为虚拟目录名称,一般不用在名称后加"/",若加入,每次都要在虚拟目录后输入"/"才能访问网站 www.jbxue.com。

    Alias /gt "D:/PHP/gt" 

    <Directory "D:/PHP/gt">
      <IfModule php5_module>
        <Files "index.php">
          php_admin_flag safe_mode off
        </Files>
      </IfModule>
      AllowOverride AuthConfig
      Order allow,deny
      Allow from all
    </Directory>


    3.重启Apache

    设置默认页面
    方法1 设置全局的:
    <IfModule dir_module> 

    DirectoryIndex index.php index.php4 index.php3 index.cgi index.pl index.html index.htm index.shtml index.phtml default.php
    </IfModule>

    方法2 针对某一目录可以这么设置:
    Alias /aidd2008 "D:/php/web/aidd2008" 

    <Directory "D:/php/web/aidd2008">
    Options Indexes MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
    DirectoryIndex default.php
    </Directory>

  • 相关阅读:
    eas之动态刷新Table
    eas之导入导出
    eas之事件
    eas之获得任何一个KDTable的选中行
    eas之创建一个UI界面并对其操作
    eas之style接口
    eas之指定虚模式
    eas之数据融合
    eas之kdtable格式化
    eas之视图冻结与解冻
  • 原文地址:https://www.cnblogs.com/cfinder010/p/3506561.html
Copyright © 2011-2022 走看看