Files
outline/server/middlewares/subdomainRedirect.js
2017-04-26 21:47:03 -07:00

10 lines
284 B
JavaScript

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