I am serving a static directory like so:
var app = express.createServer();
app.configure(function(){
app.use(express.static(__dirname + '/public'));
});
So I am not using routes at all. I would like to redirect example.com to www.example.com, is this possible using Express?