-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetlify.toml
122 lines (103 loc) · 2.61 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# Core home page redirect
[[redirects]]
from = "/"
to = "https://nervetheatre.org"
status = 301
force = true
# Catch-all seasons redirect
[[redirects]]
from = "/season/*"
to = "https://nervetheatre.org/s/:splat"
status = 301
force = true
# All show-page redirects
[[redirects]]
from = "/shows"
to = "https://nervetheatre.org/the-archive"
status = 301
force = true
[[redirects]]
from = "/shows/the-breakfast-club"
to = "https://nervetheatre.org/s/2014/the-breakfast-club"
status = 301
force = true
[[redirects]]
from = "/shows/really-really"
to = "https://nervetheatre.org/s/2015-2016/really-really"
status = 301
force = true
[[redirects]]
from = "/shows/reasons-to-be-pretty"
to = "https://nervetheatre.org/s/2015-2016/reasons-to-be-pretty"
status = 301
force = true
[[redirects]]
from = "/shows/this-is-our-youth"
to = "https://nervetheatre.org/s/2016-2017/this-is-our-youth"
status = 301
force = true
[[redirects]]
from = "/shows/jailbait"
to = "https://nervetheatre.org/s/2016-2017/jailbait"
status = 301
force = true
[[redirects]]
from = "/shows/tape"
to = "https://nervetheatre.org/s/2017-2018/tape"
status = 301
force = true
[[redirects]]
from = "/shows/the-tutors"
to = "https://nervetheatre.org/s/2017-2018/the-tutors"
status = 301
force = true
[[redirects]]
from = "/shows/bachelorette"
to = "https://nervetheatre.org/s/2017-2018/bachelorette"
status = 301
force = true
[[redirects]]
from = "/shows/the-feast"
to = "https://nervetheatre.org/s/2018-2019/the-feast"
status = 301
force = true
[[redirects]]
from = "/shows/assistance"
to = "https://nervetheatre.org/s/2018-2019/assistance"
status = 301
force = true
[[redirects]]
from = "/shows/the-library"
to = "https://nervetheatre.org/s/2019/the-library"
status = 301
force = true
[[redirects]]
from = "/shows/stained-glass"
to = "https://nervetheatre.org/s/2019/stained-glass"
status = 301
force = true
# All standard page redirects
[[redirects]]
from = "/about"
to = "https://nervetheatre.org/blog/the-playground-theatre-is-now-the-nerve"
status = 301
force = true
[[redirects]]
from = "/donate"
to = "https://nervetheatre.org/support-us"
status = 301
force = true
# Any redirect going to the home page should be handled by our wildcard redirect.
# This includes:
# /contact
# /dayton-acting-classes
# /privacy-policy
# /audition
# /instagram
#
# When we build dedicated pages for any of these on th Nerve site, we should add a uniue redirect here
[[redirects]]
from = "/*"
to = "https://nervetheatre.org"
status = 301
force = true