Skip to content

Commit 04b3862

Browse files
author
impshum
committedApr 13, 2017
Up we go!
0 parents  commit 04b3862

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+44521
-0
lines changed
 

‎.htaccess

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
RewriteEngine On
2+
RewriteCond %{HTTP_HOST} ^www\.(.*)
3+
RewriteRule ^.*$ https://%1/$1 [R=301,L]
4+
5+
RewriteCond %{HTTPS} off
6+
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
7+
8+
#Gzip
9+
<ifmodule mod_deflate.c>
10+
<ifmodule mod_mime.c>
11+
Addtype font/opentype .otf
12+
Addtype font/eot .eot
13+
Addtype font/truetype .ttf
14+
</ifmodule>
15+
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/x-javascript application/javascript text/text font/opentype font/truetype font/eot
16+
</ifmodule>
17+
#End Gzip
18+
19+
<FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
20+
Header set Cache-Control "max-age=604800, public"
21+
</FilesMatch>

‎Michelf/.htaccess

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
deny from all

0 commit comments

Comments
 (0)
Please sign in to comment.