I have a static site, a simple single page layout that I deploy in Dokku. I need to make a redirect (301) from www to non www and from *.website1.com to w
*.website1.com
w
res.redirect(301, 'http://yourotherdomain.com' + req.path)
See Express documentation.