首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 服务器 > Apache >

更动Apache默认起始(索引)页面:DirectoryIndex

2012-07-15 
更改Apache默认起始(索引)页面:DirectoryIndexApache默认索引页面是index.html,修改成其他文件需要修改htt

更改Apache默认起始(索引)页面:DirectoryIndex

Apache默认索引页面是index.html,修改成其他文件需要修改httpd.conf文件:

?

## DirectoryIndex: sets the file that Apache will serve if a directory# is requested.#<IfModule dir_module>    DirectoryIndex index.html index.php</IfModule>

?

可在Apache根目录建立一个负责跳转的index.php,比如输入IP地址直接跳转到http://ip/myweb/

?

<?php if (!empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'])) {        $uri= 'https://';    } else {      $uri='http://';    }    $uri.= $_SERVER['HTTP_HOST'];    header('Location: '.$uri.'/myweb/');    exit;?>

?

热点排行