Files
outline/server/middlewares/subdomainRedirect.js
2016-05-27 00:08:47 -07:00

13 lines
320 B
JavaScript

export default function subdomainRedirect(options) {
return async function subdomainRedirectMiddleware(ctx, next) {
console.log(ctx.headers);
if (ctx.headers.host === 'beautifulatlas.com') {
ctx.redirect('https://wwww.' + ctx.headers.host + ctx.path);
}
else {
return next();
}
}
};