Skip to content

Commit 31f9b84

Browse files
Merge branch 'feature/hosting-setup' into develop
2 parents d84d62f + d5db2a8 commit 31f9b84

File tree

3 files changed

+26
-20
lines changed

3 files changed

+26
-20
lines changed

.htaccess

Lines changed: 23 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ AddDefaultCharset utf-8
211211
Options +FollowSymlinks
212212
# Options +SymLinksIfOwnerMatch
213213
RewriteEngine On
214-
# RewriteBase /
214+
RewriteBase /conditional-parser/
215215
</IfModule>
216216

217217
# ------------------------------------------------------------------------------
@@ -235,11 +235,11 @@ AddDefaultCharset utf-8
235235

236236
# Option 1: rewrite www.example.com → example.com
237237

238-
<IfModule mod_rewrite.c>
239-
RewriteCond %{HTTPS} !=on
240-
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
241-
RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
242-
</IfModule>
238+
# <IfModule mod_rewrite.c>
239+
# RewriteCond %{HTTPS} !=on
240+
# RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
241+
# RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
242+
# </IfModule>
243243

244244
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
245245

@@ -248,13 +248,13 @@ AddDefaultCharset utf-8
248248
# Be aware that the following might not be a good idea if you use "real"
249249
# subdomains for certain parts of your website.
250250

251-
# <IfModule mod_rewrite.c>
252-
# RewriteCond %{HTTPS} !=on
253-
# RewriteCond %{HTTP_HOST} !^www\. [NC]
254-
# RewriteCond %{SERVER_ADDR} !=127.0.0.1
255-
# RewriteCond %{SERVER_ADDR} !=::1
256-
# RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
257-
# </IfModule>
251+
<IfModule mod_rewrite.c>
252+
RewriteCond %{HTTPS} !=on
253+
RewriteCond %{HTTP_HOST} !^www\. [NC]
254+
RewriteCond %{SERVER_ADDR} !=127.0.0.1
255+
RewriteCond %{SERVER_ADDR} !=::1
256+
RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
257+
</IfModule>
258258

259259

260260
# ##############################################################################
@@ -663,3 +663,13 @@ FileETag None
663663
# SetOutputFilter INCLUDES
664664
# </FilesMatch>
665665
# </IfModule>
666+
667+
# ------------------------------------------------------------------------------
668+
# | Custom Rules |
669+
# ------------------------------------------------------------------------------
670+
671+
# Redirect /index.html to /
672+
673+
<IfModule mod_rewrite.c>
674+
RewriteRule ^(.*)index\.html$ $1 [R=301,L]
675+
</IfModule>

humans.txt

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,9 @@
33

44
# TEAM
55

6-
<name> -- <role> -- <twitter>
7-
8-
# THANKS
9-
10-
<name>
6+
Andrew Keller -- Lead Developer -- http://www.wimpyprogrammer.com/
117

128
# TECHNOLOGY COLOPHON
139

14-
HTML5, CSS3
15-
jQuery, Modernizr
10+
HTML5, CSS3, Bootstrap
11+
jQuery, Modernizr, lodash, RequireJS
File renamed without changes.

0 commit comments

Comments
 (0)