-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnetlify.toml
43 lines (34 loc) · 1.02 KB
/
netlify.toml
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
33
34
35
36
37
38
39
40
41
42
43
# Blog redirects
# One per-year to scope this to old blog links only (otherwise we also match the new blog links!)
[[redirects]]
from = "/2019/:month/:day/:slug"
to = "/blog/2019/:month/:slug"
[[redirects]]
from = "/2018/:month/:day/:slug"
to = "/blog/2018/:month/:slug"
[[redirects]]
from = "/2017/:month/:day/:slug"
to = "/blog/2017/:month/:slug"
[[redirects]]
from = "/2016/:month/:day/:slug"
to = "/blog/2016/:month/:slug"
# Link post redirects
# 1 per-post
[[redirects]]
from = "/links/2019/20191108/"
to = "/blog/2019/11/interesting-links-november-2019/"
[[redirects]]
from = "/links/2019/20191201/"
to = "/blog/2019/12/interesting-links-december-2019/"
[[redirects]]
from = "/links/2019/20191219/"
to = "/blog/2019/12/more-interesting-links-december-2019/"
[[redirects]]
from = "/links/2020/20200207/"
to = "/blog/2020/02/interesting-links-february-2020/"
# There is no more archive page (/blog shows every post)
[[redirects]]
from = "/blog/archive"
to = "/blog"
[build]
publish = "_site"