让apache显示目录列表的配置方法(apache配置文件)

让apache显示目录列表的配置方法(apache配置文件)

扫码添加渲大师小管家,免费领取渲染插件、素材、模型、教程合集大礼包!

1。apache中显示目录列表

在http.conf中加入如下代码(如有虚拟主机配置。加在虚拟主机配置段内)。并把主目录内的index.pho,index.html,index.htm文件删除

复制代码 代码如下:
Alias /download "/download"
<Directory "/download">
Options Indexes
Order allow,deny
IndexOptions Charset=UTF-8
Allow from all
</Directory>

其中“/download”是要显示文件列表的目录。参数"Options Indexes"表示启用目录浏览。"IndexOptions Charset=UTF-8"设置字符集。以消除中文乱码。

2。访问虚拟目录时可用"http://ip/alias"的形式。也可把主目录内的index.php或index.html文件用如下代码代替。实现用"http://ip"即可自动跳转到指定的虚拟目录,"("count()",60)"内的60表示跳转倒计时为60ms。

复制代码 代码如下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html">
<title>正在进入</title>
</head>
<body>
<form name=loading>
 <p align=center> <font color="#0066ff" size="5">正在进入。请稍等</font><font color="#0066ff" size="5" face="Arial">......</font>
  <input type=text name=chart size=46 style="font-family:Arial; font-weight:bolder; color:#0066ff; background-color:#fef4d9; padding:0px; border-style:none;">
  
  <input type=text name=percent size=47 style="color:#0066ff; text-align:center; border-width:medium; border-style:none;">
  <script> 
var bar=0 
var line="||" 
var amount="||" 
count() 
function count(){ 
bar=bar+2 
amount =amount + line 
document.loading.chart.value=amount 
document.loading.percent.value=bar+"%" 
if (bar<99) 
{setTimeout("count()",60);} 
else 
{
window.location = "http://www.zzvips.com";} 
}</script>
 </p>
</form>
</body>
</html>

分享到 :
相关推荐

如何使美国服务器速度更加流畅(如何使美国服务器速度更加流畅一些)

使美国服务器速度更加流畅的方法:1。对美国服务器的配置以及线路进行更新升级。选择优质...

香港云服务器租用搭建游戏好吗(香港云服务器租赁)

香港云服务器租用搭建游戏好:1。香港云服务器提供高防抗DDOS攻击的服务器。能有效保...

好的宁波服务器租用要注意哪几个方面

我们都知道。服务器和服务器之间是不相同的。无论从功能上。还是使用上。其都存在着极大的...

windows修改dns端口(电脑如何修改dns设置)

大家好,今天来介绍windows修改dns端口(Windows如何改dns)的问题,...

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注