这里收集的是各种实用的 .htaccess 代码片段,你能想到的用法几乎全在这里。

免责声明: 虽然将这些代码片段直接拷贝到你的 .htaccess 文件里,绝大多数情况下都是好用的,但也有极个别情况需要你修改某些地方才行。风险自负。

重要提示: Apache 2.4 有不兼容的修改,特别是在访问配置控制方面。详细信息请参考这篇更新文档以及这篇文章

目录

  • 重新和重定向

    • 强制 www
    • 强制 www通用方法
    • 强制 non-www
    • 强制 non-www通用方法
    • 强制 HTTPS
    • 强制 HTTPS 通过代理
    • 强制添加末尾斜杠
    • 取掉末尾斜杠
    • 重定向到一个页面
    • 目录别名
    • 脚本别名
    • 重定向整个网站
    • 干净的URL
  • 安全
    • 拒绝所有访问
    • 拒绝所有访问(排除部分)
    • 屏蔽爬虫/恶意访问
    • 保护隐藏文件和目录
    • 保护备份文件和源代码文件
    • 禁止目录浏览
    • 禁止图片盗链
    • 禁止图片盗链(指定域名)
    • 密码保护目录
    • 密码保护文件
    • 通过Referrer过滤访客
    • 防止被别的网页嵌套
  • 性能
    • 压缩文件
    • 设置过期头信息
    • 关闭eTags标志
  • 其它
    • 设置PHP变量
    • Custom Error Pages
    • 强制下载
    • 阻止下载
    • 运行跨域字体引用
    • Auto UTF-8 Encode
    • 切换PHP版本
    • 禁止IE兼容视图
    • 支持WebP图片格式

重新和重定向

注意:首先需要服务器安装和启用mod_rewrite模块。

强制 www

  1. RewriteEngine on
  2. RewriteCond %{HTTP_HOST} ^example\.com [NC]
  3. RewriteRule ^(.*)$ http://www.example.com/$ [L,R=,NC]

强制 www通用方法

  1. RewriteCond %{HTTP_HOST} !^$
  2. RewriteCond %{HTTP_HOST} !^www\. [NC]
  3. RewriteCond %{HTTPS}s ^on(s)|
  4. RewriteRule ^ http%://www.%{HTTP_HOST}%{REQUEST_URI} [R=,L]

这种方法可以使用在任何网站中。

强制 non-www

究竟是WWW好,还是non-www好,没有定论,如果你喜欢不带www的,可以使用下面的脚本:

  1. RewriteEngine on
  2. RewriteCond %{HTTP_HOST} ^www\.example\.com [NC]
  3. RewriteRule ^(.*)$ http://example.com/$ [L,R=]

强制 non-www通用方法

  1. RewriteEngine on
  2. RewriteCond %{HTTP_HOST} ^www\.
  3. RewriteCond %{HTTPS}s ^on(s)|off
  4. RewriteCond http%://%{HTTP_HOST} ^(https?://)(www\.)?(.+)$
  5. RewriteRule ^ %%%{REQUEST_URI} [R=,L]

强制 HTTPS

  1. RewriteEngine on
  2. RewriteCond %{HTTPS} !on
  3. RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
  4.  
  5. # Note: It's also recommended to enable HTTP Strict Transport Security (HSTS)
  6. # on your HTTPS website to help prevent man-in-the-middle attacks.
  7. # See https://developer.mozilla.org/en-US/docs/Web/Security/HTTP_strict_transport_security
  8. <IfModule mod_headers.c>
  9. Header always set Strict-Transport-Security "max-age=31536000; includeSubDomains"
  10. </IfModule>

强制 HTTPS 通过代理

如果你使用了代理,这种方法对你很有用。

  1. RewriteCond %{HTTP:X-Forwarded-Proto} !https
  2. RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

强制添加末尾斜杠

  1. RewriteCond %{REQUEST_URI} /+[^\.]+$
  2. RewriteRule ^(.+[^/])$ %{REQUEST_URI}/ [R=,L]

取掉末尾斜杠

  1. RewriteCond %{REQUEST_FILENAME} !-d
  2. RewriteRule ^(.*)/$ /$ [R=,L]

重定向到一个页面

  1. Redirect /oldpage.html http://www.example.com/newpage.html
  2. Redirect /oldpage2.html http://www.example.com/folder/

目录别名

  1. RewriteEngine On
  2. RewriteRule ^source-directory/(.*) target-directory/$

脚本别名

  1. FallbackResource /index.fcgi

This example has an index.fcgi file in some directory, and any requests within that directory that fail to resolve a filename/directory will be sent to the index.fcgi script. It’s good if you wantbaz.foo/some/cool/path to be handled by baz.foo/index.fcgi (which also supports requests to baz.foo) while maintaining baz.foo/css/style.css and the like. Get access to the original path from the PATH_INFO environment variable, as exposed to your scripting environment.

  1. RewriteEngine On
  2. RewriteRule ^$ index.fcgi/ [QSA,L]
  3. RewriteCond %{REQUEST_FILENAME} !-f
  4. RewriteCond %{REQUEST_FILENAME} !-d
  5. RewriteRule ^(.*)$ index.fcgi/$ [QSA,L]

This is a less efficient version of the FallbackResource directive (because using mod_rewrite is more complex than just handling theFallbackResource directive), but it’s also more flexible.

重定向整个网站

  1. Redirect / http://newsite.com/

This way does it with links intact. That iswww.oldsite.com/some/crazy/link.html will becomewww.newsite.com/some/crazy/link.html. This is extremely helpful when you are just “moving” a site to a new domain. Source

干净的URL

This snippet lets you use “clean” URLs — those without a PHP extension, e.g. example.com/users instead of example.com/users.php.

  1. RewriteEngine On
  2. RewriteCond %{SCRIPT_FILENAME} !-d
  3. RewriteRule ^([^.]+)$ $.php [NC,L]

Security

拒绝所有访问

  1. ## Apache 2.2
  2. Deny from all
  3.  
  4. ## Apache 2.4
  5. # Require all denied

But wait, this will lock you out from your content as well! Thus introducing…

拒绝所有访问(排除部分)

  1. ## Apache 2.2
  2. Order deny,allow
  3. Deny from all
  4. Allow from xxx.xxx.xxx.xxx
  5.  
  6. ## Apache 2.4
  7. # Require all denied
  8. # Require ip xxx.xxx.xxx.xxx

xxx.xxx.xxx.xxx is your IP. If you replace the last three digits with 0/12 for example, this will specify a range of IPs within the same network, thus saving you the trouble to list all allowed IPs separately. Source

Now of course there’s a reversed version:

屏蔽爬虫/恶意访问

  1. ## Apache 2.2
  2. Order deny,allow
  3. Allow from all
  4. Deny from xxx.xxx.xxx.xxx
  5. Deny from xxx.xxx.xxx.xxy
  6.  
  7. ## Apache 2.4
  8. # Require all granted
  9. # Require not ip xxx.xxx.xxx.xxx
  10. # Require not ip xxx.xxx.xxx.xxy

保护隐藏文件和目录

Hidden files and directories (those whose names start with a dot .) should most, if not all, of the time be secured. For example: .htaccess,.htpasswd.git.hg

  1. RewriteCond %{SCRIPT_FILENAME} -d [OR]
  2. RewriteCond %{SCRIPT_FILENAME} -f
  3. RewriteRule "(^|/)\." - [F]

Alternatively, you can just raise a Not Found error, giving the attacker dude no clue:

  1. RedirectMatch /\..*$

保护备份文件和源代码文件

These files may be left by some text/html editors (like Vi/Vim) and pose a great security danger if exposed to public.

  1. <FilesMatch "(\.(bak|config|dist|fla|inc|ini|log|psd|sh|sql|swp)|~)$">
  2. ## Apache 2.2
  3. Order allow,deny
  4. Deny from all
  5. Satisfy All
  6.  
  7. ## Apache 2.4
  8. # Require all denied
  9. </FilesMatch>

禁止目录浏览

  1. Options All -Indexes

禁止图片盗链

  1. RewriteEngine on
  2. # Remove the following line if you want to block blank referrer too
  3. RewriteCond %{HTTP_REFERER} !^$
  4.  
  5. RewriteCond %{HTTP_REFERER} !^http(s)?://(.+\.)?example.com [NC]
  6. RewriteRule \.(jpg|jpeg|png|gif|bmp)$ - [NC,F,L]
  7.  
  8. # If you want to display a "blocked" banner in place of the hotlinked image,
  9. # replace the above rule with:
  10. # RewriteRule \.(jpg|jpeg|png|gif|bmp) http://example.com/blocked.png [R,L]

禁止图片盗链(指定域名)

Sometimes you want to 禁止图片盗链 from some bad guys only.

  1. RewriteEngine on
  2. RewriteCond %{HTTP_REFERER} ^http(s)?://(.+\.)?badsite\.com [NC,OR]
  3. RewriteCond %{HTTP_REFERER} ^http(s)?://(.+\.)?badsite2\.com [NC,OR]
  4. RewriteRule \.(jpg|jpeg|png|gif)$ - [NC,F,L]
  5.  
  6. # If you want to display a "blocked" banner in place of the hotlinked image,
  7. # replace the above rule with:
  8. # RewriteRule \.(jpg|jpeg|png|gif|bmp) http://example.com/blocked.png [R,L]

密码保护目录

First you need to create a .htpasswd file somewhere in the system:

  1. htpasswd -c /home/fellowship/.htpasswd boromir

Then you can use it for authentication:

  1. AuthType Basic
  2. AuthName "One does not simply"
  3. AuthUserFile /home/fellowship/.htpasswd
  4. Require valid-user

密码保护文件

  1. AuthName "One still does not simply"
  2. AuthType Basic
  3. AuthUserFile /home/fellowship/.htpasswd
  4.  
  5. <Files "one-ring.o">
  6. Require valid-user
  7. </Files>
  8.  
  9. <FilesMatch ^((one|two|three)-rings?\.o)$>
  10. Require valid-user
  11. </FilesMatch>

通过Referrer过滤访客

This denies access for all users who are coming from (referred by) a specific domain.

  1. RewriteEngine on
  2. # Options +FollowSymlinks
  3. RewriteCond %{HTTP_REFERER} somedomain\.com [NC,OR]
  4. RewriteCond %{HTTP_REFERER} anotherdomain\.com
  5. RewriteRule .* - [F]

防止被别的网页嵌套

This prevents the website to be framed (i.e. put into an iframe tag), when still allows framing for a specific URI.

  1. SetEnvIf Request_URI "/starry-night" allow_framing=true
  2. Header set X-Frame-Options SAMEORIGIN env=!allow_framing

Performance

压缩文件

  1. <IfModule mod_deflate.c>
  2.  
  3. # 强制 compression for mangled headers.
  4. # http://developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping
  5. <IfModule mod_setenvif.c>
  6. <IfModule mod_headers.c>
  7. SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{}|~{}|-{})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{,}$ HAVE_Accept-Encoding
  8. RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
  9. </IfModule>
  10. </IfModule>
  11.  
  12. # Compress all output labeled with one of the following MIME-types
  13. # (for Apache versions below 2.3.7, you don't need to enable `mod_filter`
  14. # and can remove the `<IfModule mod_filter.c>` and `</IfModule>` lines
  15. # as `AddOutputFilterByType` is still in the core directives).
  16. <IfModule mod_filter.c>
  17. AddOutputFilterByType DEFLATE application/atom+xml \
  18. application/javascript \
  19. application/json \
  20. application/rss+xml \
  21. application/vnd.ms-fontobject \
  22. application/x-font-ttf \
  23. application/x-web-app-manifest+json \
  24. application/xhtml+xml \
  25. application/xml \
  26. font/opentype \
  27. image/svg+xml \
  28. image/x-icon \
  29. text/css \
  30. text/html \
  31. text/plain \
  32. text/x-component \
  33. text/xml
  34. </IfModule>
  35.  
  36. </IfModule>

设置过期头信息

Expires headers tell the browser whether they should request a specific file from the server or just grab it from the cache. It is advisable to set static content’s expires headers to something far in the future.
If you don’t control versioning with filename-based cache busting, consider lowering the cache time for resources like CSS and JS to something like 1 week.

  1. <IfModule mod_expires.c>
  2. ExpiresActive on
  3. ExpiresDefault "access plus 1 month"
  4.  
  5. # CSS
  6. ExpiresByType text/css "access plus 1 year"
  7.  
  8. # Data interchange
  9. ExpiresByType application/json "access plus 0 seconds"
  10. ExpiresByType application/xml "access plus 0 seconds"
  11. ExpiresByType text/xml "access plus 0 seconds"
  12.  
  13. # Favicon (cannot be renamed!)
  14. ExpiresByType image/x-icon "access plus 1 week"
  15.  
  16. # HTML components (HTCs)
  17. ExpiresByType text/x-component "access plus 1 month"
  18.  
  19. # HTML
  20. ExpiresByType text/html "access plus 0 seconds"
  21.  
  22. # JavaScript
  23. ExpiresByType application/javascript "access plus 1 year"
  24.  
  25. # Manifest files
  26. ExpiresByType application/x-web-app-manifest+json "access plus 0 seconds"
  27. ExpiresByType text/cache-manifest "access plus 0 seconds"
  28.  
  29. # Media
  30. ExpiresByType audio/ogg "access plus 1 month"
  31. ExpiresByType image/gif "access plus 1 month"
  32. ExpiresByType image/jpeg "access plus 1 month"
  33. ExpiresByType image/png "access plus 1 month"
  34. ExpiresByType video/mp4 "access plus 1 month"
  35. ExpiresByType video/ogg "access plus 1 month"
  36. ExpiresByType video/webm "access plus 1 month"
  37.  
  38. # Web feeds
  39. ExpiresByType application/atom+xml "access plus 1 hour"
  40. ExpiresByType application/rss+xml "access plus 1 hour"
  41.  
  42. # Web fonts
  43. ExpiresByType application/font-woff2 "access plus 1 month"
  44. ExpiresByType application/font-woff "access plus 1 month"
  45. ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
  46. ExpiresByType application/x-font-ttf "access plus 1 month"
  47. ExpiresByType font/opentype "access plus 1 month"
  48. ExpiresByType image/svg+xml "access plus 1 month"
  49. </IfModule>

关闭eTags标志

By removing the ETag header, you disable caches and browsers from being able to validate files, so they are forced to rely on your Cache-Control and Expires header. Source

  1. <IfModule mod_headers.c>
  2. Header unset ETag
  3. </IfModule>
  4. FileETag None

Miscellaneous

设置PHP变量

  1. php_value <key> <val>
  2.  
  3. # For example:
  4. php_value upload_max_filesize 50M
  5. php_value max_execution_time

Custom Error Pages

  1. ErrorDocument "Houston, we have a problem."
  2. ErrorDocument http://error.example.com/mordor.html
  3. ErrorDocument /errors/halflife3.html

强制下载

Sometimes you want to 强制 the browser to download some content instead of displaying it.

  1. <Files *.md>
  2. ForceType application/octet-stream
  3. Header set Content-Disposition attachment
  4. </Files>

Now there is a yang to this yin:

阻止下载

Sometimes you want to 强制 the browser to display some content instead of downloading it.

  1. <FilesMatch "\.(tex|log|aux)$">
  2. Header set Content-Type text/plain
  3. </FilesMatch>

运行跨域字体引用

CDN-served webfonts might not work in Firefox or IE due to CORS. This snippet solves the problem.

  1. <IfModule mod_headers.c>
  2. <FilesMatch "\.(eot|otf|ttc|ttf|woff|woff2)$">
  3. Header set Access-Control-Allow-Origin "*"
  4. </FilesMatch>
  5. </IfModule>

Auto UTF-8 Encode

Your text content should always be UTF-8 encoded, no?

  1. # Use UTF-8 encoding for anything served text/plain or text/html
  2. AddDefaultCharset utf-
  3.  
  4. # 强制 UTF-8 for a number of file formats
  5. AddCharset utf- .atom .css .js .json .rss .vtt .xml

切换PHP版本

If you’re on a shared host, chances are there are more than one version of PHP installed, and sometimes you want a specific version for your website. For example, Laravel requires PHP >= 5.4. The following snippet should switch the PHP version for you.

  1. AddHandler application/x-httpd-php55 .php
  2.  
  3. # Alternatively, you can use AddType
  4. AddType application/x-httpd-php55 .php

禁止IE兼容视图

Compatibility View in IE may affect how some websites are displayed. The following snippet should 强制 IE to use the Edge Rendering Engine and disable the Compatibility View.

  1. <IfModule mod_headers.c>
  2. BrowserMatch MSIE is-msie
  3. Header set X-UA-Compatible IE=edge env=is-msie
  4. </IfModule>

支持WebP图片格式

If WebP images are supported and an image with a .webp extension and the same name is found at the same place as the jpg/png image that is going to be served, then the WebP image is served instead.

  1. RewriteEngine On
  2. RewriteCond %{HTTP_ACCEPT} image/webp
  3. RewriteCond %{DOCUMENT_ROOT}/$.webp -f
  4. RewriteRule (.+)\.(jpe?g|png)$ $.webp [T=image/webp,E=accept:]

原文:http://www.techug.com/htaccess-snippets

【转】实用 .htaccess 用法大全的更多相关文章

  1. 转:实用 .htaccess 用法大全

    原文来自于:http://www.techug.com/htaccess-snippets 这里收集的是各种实用的 .htaccess 代码片段,你能想到的用法几乎全在这里. 免责声明: 虽然将这些代 ...

  2. 实用 .htaccess 用法大全

    这里收集的是各种实用的 .htaccess 代码片段,你能想到的用法几乎全在这里. 免责声明: 虽然将这些代码片段直接拷贝到你的 .htaccess 文件里,绝大多数情况下都是好用的,但也有极个别情况 ...

  3. 实用 .htaccess 用法大全【转载】

    转载:http://www.techug.com/htaccess-snippets 这里收集的是各种实用的 .htaccess 代码片段,你能想到的用法几乎全在这里. 免责声明: 虽然将这些代码片段 ...

  4. C# MessageBox 用法大全(转)

    C# MessageBox 用法大全 http://www.cnblogs.com/Tammie/archive/2011/08/05/2128623.html 我们在程序中经常会用到MessageB ...

  5. 转帖: 一份超全超详细的 ADB 用法大全

    增加一句 连接 网易mumu模拟器的方法 adb  connect 127.0.0.1:7555 一份超全超详细的 ADB 用法大全 2016年08月28日 10:49:41 阅读数:35890 原文 ...

  6. 实用js代码大全

    实用js代码大全 //过滤数字 <input type=text onkeypress="return event.keyCode>=48&&event.keyC ...

  7. MVC5 + EF6 + Bootstrap3 (9) HtmlHelper用法大全(下)

    文章来源:Slark.NET-博客园 http://www.cnblogs.com/slark/p/mvc5-ef6-bs3-get-started-httphelper-part2.html 上一节 ...

  8. MVC5 + EF6 + Bootstrap3 (8) HtmlHelper用法大全(上)

    文章来源:Slark.NET-博客园 http://www.cnblogs.com/slark/p/mvc5-ef6-bs3-get-started-httphelper-part1.html 上一节 ...

  9. MVC HtmlHelper用法大全

    MVC HtmlHelper用法大全HtmlHelper用来在视图中呈现 HTML 控件.以下列表显示了当前可用的一些 HTML 帮助器. 本主题演示所列出的带有星号 (*) 的帮助器. ·Actio ...

随机推荐

  1. 默认系统为UEFI启动的GPT分区的WIN7(8),如何安装VHD的UEFI WIN8(7)

    默认系统为UEFI启动的GPT分区的WIN7(8),如何安装VHD的UEFI WIN8(7) 情况A:如果默认系统为UEFI启动.GPT分区的WIN7,想安装个VHD的UEFI WIN8.1 1:系统 ...

  2. [原创] web_custom_request 与 Viewstate

    在用loadrunner对.net编写的website进行性能测试时,经常会遇上一些hidden fields,例如,CSRFTOKEN.VIEWSTATE.EVENTVALIDATION等,而对于这 ...

  3. php 连接 mssql sql2008

    摘要 sql server 2008 1.下载微软提供的dll 下载地址:http://www.microsoft.com/en-us/download/details.aspx?id=20098 p ...

  4. 解决:无法将“Add-Migration”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。请检查名称的拼写,如果包括路径,请确保路径正确,然后再试一次

    1.输入的中划线“-”格式不对,检查是否为全角状态下输入,误输入了下划线“_",或是前后有空格: 2.没有引用EntityFramework命令,请执行如下名称(Import-Module ...

  5. tomcat配置文件server.xml参数说明

    元素名 属性 解释 server port 指定一个端口,这个端口负责监听关闭tomcat 的请求 shutdown 指定向端口发送的命令字符串 service name 指定service 的名字 ...

  6. 【矩阵压缩】 poj 1050

    题意:给一个矩阵,里面有正负数,求子矩阵和的最大值 #include <iostream> #include <cstdio> #include <stdlib.h> ...

  7. 使用Metasploit入侵windows之自动扫描

    最新版本的metasploit为4.0,可以通过官方网站(www.metasploit.com)直接下载,因为是开源的,所以免费. metasploit很好很强大,集成了700多种exploit,但是 ...

  8. Qt5:窗口背景色的设置

    在Qt中,设置窗口背景色有多种方法,如通过setStyleSheet   和 调色板 setPalette 等 下面是setPalette 方法 QPalette pale = palette(); ...

  9. bat 常用命令

    基础部分:======================================================================一.基础语法: 1.批处理文件是一个". ...

  10. mysql 赋给用户权限 grant all privileges on

    遇到了 SQLException: access denied for  @'localhost' (using password: no) 解决办法   grant all privileges o ...