论坛首页 综合技术论坛

apache配置(压缩&防盗链)

浏览 2404 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2010-07-28  
apache配置

1. 压缩
备注:ie6下面js压缩,有时候会无法执行
SetOutputFilter DEFLATE
<Location />
    AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css
    BrowserMatch ^Mozilla/4 gzip-only-text/html
    BrowserMatch ^Mozilla/4\.0[678] no-gzip
    BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
    BrowserMatch '\bMSIE 6' gzip-only-text/html
</Location>

2. 防止盗链,csrf攻击
SetEnvIfNoCase Referer "mail\.abc\.com" local_ref=1
SetEnvIfNoCase Referer ".*\.mail\.abc\.com" local_ref=1
SetEnvIfNoCase Request_URI "(login\.htm)$" local_ref=1
SetEnvIfNoCase Request_URI "^$" local_ref=1
<filesmatch "\.htm$">
    Order Allow,Deny
    Allow from env=local_ref
</filesmatch>
   发表时间:2010-08-02  
不错的小技巧。
0 请登录后投票
论坛首页 综合技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics