-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.htaccess
26 lines (22 loc) · 914 Bytes
/
.htaccess
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
############################################
##
## Compressão e União de Arquivos
##
## @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
##
## @author Willian keller <will_levinki@hotmail.com>
##
## @package Compressao
##
############################################
## Ativar a compactação de arquivos no servidor Apache
## http://developer.yahoo.com/performance/rules.html#gzip
# Insire filtro sobre tipos escolhidos de conteúdo
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript
############################################
## Ativa a reescruita de URL
RewriteEngine On
############################################
## Reescreve os parâmetros para o arquivo comprime.php
RewriteRule ^comprime/([a-z]+)/(.+)$ comprime.php?tipo=$1&arquivos=$2
RewriteRule ^comprime/([a-z]+)/(.+)/$ comprime.php?tipo=$1&arquivos=$2