10 lines
280 B
JavaScript
10 lines
280 B
JavaScript
export default function subdomainRedirect(options) {
|
|
return async function subdomainRedirectMiddleware(ctx, next) {
|
|
if (ctx.headers.host === 'getoutline.com') {
|
|
ctx.redirect(`https://www.${ctx.headers.host}${ctx.path}`);
|
|
} else {
|
|
return next();
|
|
}
|
|
};
|
|
}
|