else if (req.url.indexOf('/vote/') > -1) {
    word = req.url.replace('/', '').trim();
    console.log("VOTE!", word);
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end('great success');