Apache 中 .htaccess 文件设置技巧16则(3)

来源:asp之家 时间:2010-03-08 13:42:00 

11. 阻止存取.htaccess 文件

 

# secure htaccess file

order allow,deny
deny from all

 

12. 保护服务器上的文件被存取

 

# prevent access of a certain fileorder allow,deny
deny from all

 

13. 阻止目录浏览

 

# disable directory browsing
Options All -Indexes

 

14. 设置默认主页

 

# serve alternate default index page
DirectoryIndex about.html

 

15. 口令认证– 你可以创建一个文件用于认证。下面是一个示例:

 

# to protect a file

AuthType Basic
AuthName “Prompt”
AuthUserFile /home/path/.htpasswd
Require valid-user

# password-protect a directory
resides
AuthType basic
AuthName “This directory is protected”
AuthUserFile /home/path/.htpasswd
AuthGroupFile /dev/null
Require valid-user

 

16. 把老的域名转像新的域名

 

# redirect from old domain to new domain
RewriteEngine On
RewriteRule ^(.*)$http://www.yourdomain.com/$1[R=301,L]

 

标签:Apache,.htaccess,站长之家
0
投稿

猜你喜欢

  • 如何做一个人气旺的站 我的四个做站经验

    2008-12-23 11:21:00
  • 魔兽争霸15周年回顾 WOW团队打造新网游

    2009-11-20 13:24:00
  • 服务器存储数据丢失后的正确操作方法

    2009-01-13 16:35:00
  • Linux环境ActiveMQ部署方法详解

    2023-03-18 22:52:10
  • 服务器安全管理的四个注意事项

    2009-06-04 13:44:00
  • Windows Server2008 ADFS配置攻略

    2009-03-06 17:01:00
  • 谷歌搜索引擎优化关于链接的九个基础问题

    2008-12-08 10:18:00
  • 看百度新站收录:不是不收 时间不够

    2008-01-09 12:38:00
  • Linux两台服务器之间复制文件及免密码登录的方法

    2023-10-20 19:38:52
  • 手把手教你在腾讯云上搭建hive3.1.2的方法

    2023-11-03 03:21:03
  • 网管员安全训练营--让FTP服务器更安全(1)

    2007-09-14 14:28:00
  • 防止GET和POST方式引起的SQL注入攻击ASP程序

    2007-08-06 12:57:00
  • 每个人都可以强大,只要懂什么是坚持

    2007-12-25 21:58:00
  • 批量转换全角数字非法

    2008-08-31 20:32:00
  • Firefox手机版正式发布

    2010-02-01 12:46:00
  • VirtualBox创建的Debian虚拟机与Windows宿主共享文件

    2021-03-24 05:25:26
  • VMware虚拟机CentOS系统网络设置

    2022-04-16 08:12:26
  • 一个好的SEO方案让客户信服 自己财源滚滚

    2009-09-28 02:15:00
  • Linux中让Tomcat5自动启动服务脚本

    2010-05-08 18:28:00
  • Windows2003服务器安装及设置教程——MSSQL安全篇二

    2010-02-08 13:01:00
  • asp之家 网站运营 m.aspxhome.com