UNPKG

@europeana/portal

Version:
15 lines (12 loc) 331 B
// Redirect legacy gallery page URLs export default (route) => { const pattern = /^\/portal(\/[a-z]{2})?\/explore\/(newcontent|colours|sources|topics|people|periods)(\.html)?$/; const match = route.path.match(pattern); return match ? { path: [ match[1], '/collections' ], status: 302 } : null; };