Best way to have multiple URL's for posts without aliasing every post

For the backstory I have ~5000 pages that used to use /2006/01/02/title formatting but the ask is for /title-hash/ going forward. Is there a way to do this without adding in the alias for each old item? Since it is a public site and links have been made to the old ones I have to keep them with the /2006/01/02 formatting as well.

Best case: something akin to:
posts = ['/:year/:month/:day/:title/', '/:title/']

In the config file. I know it is indeed a rare request just seeing if this flexibility exists.

No. Use server-side redirects.

1 Like

If you are using Apache, I find this doc useful: Redirecting and Remapping with mod_rewrite - Apache HTTP Server Version 2.4

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.