summaryrefslogtreecommitdiff
path: root/src/redirects.ts
blob: 63860cffb823359f4cd9038e91907bb19b51aaab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// 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: () => {
			self.location.href = "https://wiki.themanaworld.org/index.php/Downloads";
		}
	},
	{
		path: "/recover",
		redirect: { name: "support" },
	},
];

export default redirects;