apache .htaccess文件配置技巧大全

发布时间:2020-07-27编辑:脚本学堂
本文介绍了21个常用的apache .htaccess文件配置技巧,.htaccess定制默认文档、自定义错误页、重定向等操作,apache中htaccess文件配置技巧大全,需要的朋友参考下。

apache中.htaccess文件配置技巧

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 里新的子文件夹(脚本学堂 编辑整理 www.jb200.com):
 

复制代码 代码示例:
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