欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

21个常用的apache .htaccess文件配置技巧分享

程序员文章站 2023-10-28 14:34:16
apache web 服务器可以通过 .htaccess 文件来操作各种信息,这是一个目录级配置文件的默认名称,允许去*化的 web 服务器配置管理。可用来重写服务器的全...

apache web 服务器可以通过 .htaccess 文件来操作各种信息,这是一个目录级配置文件的默认名称,允许去*化的 web 服务器配置管理。可用来重写服务器的全局配置。该文件的目的就是为了允许单独目录的访问控制配置,例如密码和内容访问。

1. 定制目录的 index 文件

复制代码 代码如下:
directoryindex index.html index.php index.htm

你可以使用上面的配置来更改目录的默认页面,例如你将这个脚本放在 foo 目录,则用户请求 /foo/ 时候就会访问 /foo/index.html。

2. 自定义错误页

复制代码 代码如下:
errordocument 404 errors/404.html

当用户访问页面报错时,例如页面找不到你希望显示自定义的错误页面,你可以通过这种方法来实现。或者是动态的页面:
复制代码 代码如下:
errordocument 404 /psych/cgi-bin/error/error?404

3. 控制访问文件和目录的级别

.htaccess 经常用来限制和拒绝访问某个文件和目录,例如我们有一个 includes 文件夹,这里存放一些脚本,我们不希望用户直接访问这个文件夹,那么通过下面的脚本可以实现:

复制代码 代码如下:

# no one gets in here!
deny from all
上述脚本是拒绝所有的访问,你也可以根据ip段来拒绝:
# no nasty crackers in here!
order deny,allow
deny from all
allow from 192.168.0.0/24
# this would do the same thing..
#allow from 192.168.0

一般这些方法是通过防火墙来处理,但在一个生产环境中的服务器来说,这样的调整非常方便。
有时候你只是想禁止某个ip访问:
复制代码 代码如下:
# someone else giving the ruskies a bad name..
order allow,deny
deny from 83.222.23.219
allow from all

4. 修改环境变量

环境变量包含了服务器端 cgi 的一些扩展信息,可使用 setenv 和 unsetenv 进行设置以及取消设置.

复制代码 代码如下:
setenv site_webmaster "jack sprat"
setenv site_webmaster_uri mailto:jack.sprat@characterology.com
     
unsetenv remote_addr

5. 301 重定向

如果你希望某个页面跳转到新的页面:

复制代码 代码如下:
redirect 301 /old/file.html http://yourdomain.com/new/file.html

下面可以实现对整个路径的重定向:
复制代码 代码如下:
redirectmatch 301 /blog(.*) http://yourdomain.com/$1

6. 通过 .htaccess 实现缓存策略

通过设置在浏览器上缓存静态文件可以提升网站的性能:

复制代码 代码如下:
# year
<filesmatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|swf|mp3|mp4)$">
header set cache-control "public"
header set expires "thu, 15 apr 2010 20:00:00 gmt"
header unset last-modified
</filesmatch>
#2 hours
<filesmatch "\.(html|htm|xml|txt|xsl)$">
header set cache-control "max-age=7200, must-revalidate"
</filesmatch>
<filesmatch "\.(js|css)$">
setoutputfilter deflate
header set expires "thu, 15 apr 2010 20:00:00 gmt"
</filesmatch>

7. 使用 gzip 对输出进行压缩

在 .htaccess 中添加下面的代码可以将所有的 css、js 和 html 使用 gzip 算法压缩:

复制代码 代码如下:
<ifmodule mod_gzip.c>
    mod_gzip_on       yes
    mod_gzip_dechunk  yes
    mod_gzip_item_include file      \.(html?|txt|css|js|php|pl)$
    mod_gzip_item_include handler   ^cgi-script$
    mod_gzip_item_include mime      ^text/.*
    mod_gzip_item_include mime      ^application/x-javascript.*
    mod_gzip_item_exclude mime      ^image/.*
    mod_gzip_item_exclude rspheader ^content-encoding:.*gzip.*
</ifmodule>

使用上面代码的前提是启用 mod_gzip 模块,你可以使用下面脚本来判断 web 服务器是否提供 mod_deflate 支持:

复制代码 代码如下:
<location>
    setoutputfilter deflate
      setenvifnocase request_uri  \
        \.(?:gif|jpe?g|png)$ no-gzip dont-vary
    setenvifnocase request_uri  \
        \.(?:exe|t?gz|zip|gz2|sit|rar)$ no-gzip dont-vary
</location>

如果 web 服务器不支持 mod_deflate ,那么可使用下面方法:
复制代码 代码如下:
<filesmatch "\.(txt|html|htm|php)">
    php_value output_handler ob_gzhandler
</filesmatch>

8. 强制要求使用 https 访问

通过以下脚本可以强制整个网站必须使用 https 方式访问:

复制代码 代码如下:
rewriteengine on
rewritecond %{https} !on
rewriterule (.*) https://%{http_host}%{request_uri}

9. url 重写

例如要将 product.php?id=12 重写为 product-12.html

复制代码 代码如下:
rewriteengine on
rewriterule ^product-([0-9]+)\.html$ product.php?id=$1

将 product.php?id=12 重写为 product/ipod-nano/12.html
复制代码 代码如下:
rewriteengine on
rewriterule ^product/([a-za-z0-9_-]+)/([0-9]+)\.html$ product.php?id=$2

重定向没有 www 到有 www 的 url 地址:
复制代码 代码如下:
rewriteengine on
rewritecond %{http_host} ^viralpatel\.net$
rewriterule (.*) http://www.viralpatel.net/$1 [r=301,l]

重写 yoursite.com/user.php?username=xyz 到 yoursite.com/xyz
复制代码 代码如下:
rewriteengine on
rewriterule ^([a-za-z0-9_-]+)$ user.php?username=$1
rewriterule ^([a-za-z0-9_-]+)/$ user.php?username=$1

重定向某个域名到一个 public_html 里新的子文件夹:
复制代码 代码如下:
rewriteengine on
rewritecond %{http_host} ^test\.com$ [or]
rewritecond %{http_host} ^www\.test\.com$
rewritecond %{request_uri} !^/new/
rewriterule (.*) /new/$1

10. 阻止列出目录文件

使用下面代码可以防止列表目录里的所有文件:

复制代码 代码如下:
options -indexes

或者
复制代码 代码如下:
indexignore *

11. 添加新的 mime-types

mime-types 依赖于文件的扩展名,未能被识别的文件扩展名会当成文本数据传输

复制代码 代码如下:
addtype application/x-endnote-connection enz
addtype application/x-endnote-filter enf
addtype application/x-spss-savefile sav

12. 防盗链

你不希望别人网站引用你站内的图片、css 等静态文件,也就是传说中的防盗链,可以使用如下脚本:

复制代码 代码如下:
rewritecond %{http_referer} !^$
rewritecond %{request_uri} !^/(wp-login.php|wp-admin/|wp-content/plugins/|wp-includes/).* [nc]
rewritecond %{http_referer} !^http://www.askapache.com.*$ [nc]
rewriterule \.(ico|pdf|flv|jpg|jpeg|mp3|mpg|mp4|mov|wav|wmv|png|gif|swf|css|js)$ - [f,ns,l]

13. 指定上传文件的大小限制,适用于 php

复制代码 代码如下:

php_value upload_max_filesize 20m
php_value post_max_size 20m
php_value max_execution_time 200
php_value max_input_time 200

上述脚本中,通过四个参数来设置上传文件的限制,第一个参数是文件的大小,第二个是 post 数据的大小,第三个是传输的时间(单位秒),最后一个是解析上传数据最多花费的时间(单位秒)

14. 禁止脚本执行

复制代码 代码如下:
options -execcgi
addhandler cgi-script .php .pl .py .jsp .asp .htm .shtml .sh .cgi

15. 修改字符集和语言头

复制代码 代码如下:

adddefaultcharset utf-8
defaultlanguage en-us

16. 设置服务器时区(gmt)

复制代码 代码如下:
setenv tz america/indianapolis

17. 强制 “file save as” 提示

复制代码 代码如下:
addtype application/octet-stream .avi .mpg .mov .pdf .xls .mp4

18. 保护单个文件

正常情况下 .htaccess 可用于限制整个目录的访问,但也可以只限制某个文件:

复制代码 代码如下:
<files quiz.html>
order deny,allow
deny from all
authtype basic
authname "characterology student authcate"
authldap on
authldapserver ldap://directory.characterology.com/
authldapbase "ou=student, o=characterology university, c=au"
require valid-user
satisfy any
</files>

19. 设置 cookie

通过环境变量来设置 cookie

复制代码 代码如下:
header set set-cookie "language=%{lang}e; path=/;" env=lang

基于请求设置 cookie,该代码发送 set-cookie 头用于设置 cookie 值为第二个括号里的匹配项
复制代码 代码如下:

rewriteengine on
rewritebase /
rewriterule ^(.*)(de|es|fr|it|ja|ru|en)/$ - [co=lang:$2:.yourserver.com:7200:/]

20. 设置自定义的响应 headers

复制代码 代码如下:
header set p3p "policyref=\"http://www.askapache.com/w3c/p3p.xml\""
header set x-pingback "http://www.askapache.com/xmlrpc.php"
header set content-language "en-us"
header set vary "accept-encoding"

21. 根据 user-agent 来阻止请求

复制代码 代码如下:
setenvifnocase ^user-agent$ .*(craftbot|download|extract|stripper|sucker|ninja|clshttp|webspider|leacher|collector|grabber|webpictures) http_safe_badbot
setenvifnocase ^user-agent$ .*(libwww-perl|aesop_com_spiderman) http_safe_badbot
deny from env=http_safe_badbot