8295f5f967
refs #9589
18 lines
477 B
JavaScript
18 lines
477 B
JavaScript
const urlService = require('../../services/url');
|
|
|
|
function redirectAdminUrls(req, res, next) {
|
|
const subdir = urlService.utils.getSubdir(),
|
|
ghostPathRegex = new RegExp(`^${subdir}/ghost/(.+)`),
|
|
ghostPathMatch = req.originalUrl.match(ghostPathRegex);
|
|
|
|
if (ghostPathMatch) {
|
|
return res.redirect(urlService.utils.urlJoin(urlService.utils.urlFor('admin'), '#', ghostPathMatch[1]));
|
|
}
|
|
|
|
next();
|
|
}
|
|
|
|
module.exports = [
|
|
redirectAdminUrls
|
|
];
|