summaryrefslogblamecommitdiff
path: root/src/router/redirects.ts
blob: 241abe60bb22c5966feb71d388d3f2b258e775c6 (plain) (tree)




















                                                   
                                       
                                                                                  

                 



                                              


                         
// legacy paths from the PHP website

const redirects = [
	{
		path: "/index.php",
		redirect: { name: "home" },
	},
	{
		path: "/news-feed.php",
		redirect: { name: "news" },
	},
	{
		path: "/about.php",
		redirect: { name: "about" },
	},
	{
		path: "/registration.php",
		redirect: { name: "registration" },
	},
	{
		path: "/downloads.php",
		redirect: (): void => {
			self.location.href = "https://manaplus.themanaworld.org/";
		}
	},
	{
		path: "/recover",
		redirect: { name: "support" },
	},
];

export default redirects;