更改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;
?>
技术分享

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。