请教DirectAdmin面板如何禁止直接以IP访问站点

请教DirectAdmin面板如何禁止直接以IP访问站点,第1张

修改Apache的>

Linux系统下web服务器大多数都是Apache搭建的环境,下面是Apache环境web设置默认页面方法:

1、设置全局的web目录默认首页

<IfModule dir_module> 
DirectoryIndex indexphp indexphp4 indexphp3 indexcgi indexpl indexhtml indexhtm indexshtml indexphtml defaultphp 
</IfModule>

2、针对某一web目录设置默认首页:

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


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/10900943.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-12
下一篇 2023-05-12

发表评论

登录后才能评论

评论列表(0条)

保存