- 工信部备案号 滇ICP备05000110号-1
- 滇公安备案 滇53010302000111
- 增值电信业务经营许可证 B1.B2-20181647、滇B1.B2-20190004
- 云南互联网协会理事单位
- 安全联盟认证网站身份V标记
- 域名注册服务机构许可:滇D3-20230001
- 代理域名注册服务机构:新网数码
根据自己代码需求复制如下代码到.htaccess文件
<Files ~ "^.(htaccess|htpasswd)$">
deny from all
</Files>
DirectoryIndex index.html index.php
order deny,allow
上面代码的意思是:网站默认打开根目录下文件的顺序。首先是“index.html",若?有该文件,则打开“index.php"。如果是用asp语言开发的网站,代码可以如下设置:
<Files ~ "^.(htaccess|htpasswd)$">
deny from all
</Files>
DirectoryIndex index.html index.asp
order deny,allow
? 当目录中没有“index.html”文件时,默认打开“index.asp”文件。
若果是新手站长,不清楚自己网站的开发环境,又想设置默认打开静态文件时,可以考虑直接使用如下代码。
<Files ~ "^.(htaccess|htpasswd)$">
deny from all
</Files>
DirectoryIndex index.html index.php index.asp index.shtml index.htm index.jsp index.aspx
deny,allow
代码的意思大致和上面差不多,设置的是默认打开网站目录下文件的顺序依次是index.html、index.php、index.asp、index.shtml、index.htm、index.jsp、index.aspx。
根据自己需要选择,复制好相应的代码,粘贴到记事本,保存为".htaccess"文件。然后通过FTP上传到网站的更目录即可
售前咨询
售后咨询
备案咨询
二维码
TOP