-
Notifications
You must be signed in to change notification settings - Fork 37
/
.htaccess
37 lines (32 loc) · 906 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
27
28
29
30
31
32
33
34
35
36
37
<IfModule mod_rewrite.c>
RewriteEngine on
FileETag None
# Serve correct content types, and prevent double compression.
# Static brotli
<Files *.js.br>
AddType "text/javascript" .br
AddEncoding br .br
</Files>
<Files *.css.br>
AddType "text/css" .br
AddEncoding br .br
</Files>
<Files *.json.br>
AddType "application/json" .br
AddEncoding br .br
</Files>
<Files *.csv.br>
AddType "text/csv" .br
AddEncoding br .br
</Files>
# Redirect br
RewriteCond %{HTTP:Accept-Encoding} br
RewriteCond %{REQUEST_FILENAME}.br -f
RewriteRule ^(.*)$ $1.br [L]
# Don't rewrite files or directories
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
# Rewrite everything else to index.html to allow html5 state links
RewriteRule ^ index.html [L]
</IfModule>