Skip to content

Commit

Permalink
Add redirect for /giving
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesdoc committed Nov 8, 2024
1 parent d32a2fb commit 9aa962a
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -1,26 +1,28 @@
[build.environment]
TZ="Europe/London"
TZ = "Europe/London"

[[plugins]]
package = "netlify-plugin-cache"

[plugins.inputs]
paths = [
"./dist/_assets/img",
".imgCache"
]
[plugins.inputs]
paths = ["./dist/_assets/img", ".imgCache"]

[[redirects]]
from = "/prayer"
to = "/prayer-meeting/"
status = 301
from = "/prayer"
to = "/prayer-meeting/"
status = 301

[[redirects]]
from = "/focus"
to = "/bible-study/"
status = 302
from = "/focus"
to = "/bible-study/"
status = 302

[[redirects]]
from = "/privacy"
to = "/about/policies/our-privacy-policy/"
status = 302
from = "/giving"
to = "/get-involved/giving/"
status = 302

[[redirects]]
from = "/privacy"
to = "/about/policies/our-privacy-policy/"
status = 302

0 comments on commit 9aa962a

Please sign in to comment.