From 7d504bd777df7762c6de0bd47cb500a233c23814 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 25 Dec 2011 09:53:40 +0000 Subject: [PATCH] I like slashes at the end of URLs --- app.js | 2 +- src/app.coffee | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app.js b/app.js index b30e5b5..1da82cb 100644 --- a/app.js +++ b/app.js @@ -24,7 +24,7 @@ app.configure('production', function() { app.use(express.errorHandler()); return app.use(require('./middleware/host_redirect')({ - "www.heartb.it": "http://heartb.it" + "www.heartb.it": "http://heartb.it/" })); }); diff --git a/src/app.coffee b/src/app.coffee index 08779d4..c549642 100644 --- a/src/app.coffee +++ b/src/app.coffee @@ -18,7 +18,7 @@ app.configure 'development', -> app.configure 'production', -> app.use express.errorHandler() app.use require('./middleware/host_redirect') - "www.heartb.it": "http://heartb.it" + "www.heartb.it": "http://heartb.it/" # Routes