-
Notifications
You must be signed in to change notification settings - Fork 3
/
netlify.toml
57 lines (44 loc) · 1.32 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
[build]
publish = "_site"
command = "eleventy"
[[redirects]]
from = "/try-free/docs"
to = "/try-free/"
status = 200
[[redirects]]
from = "/try-free/doc"
to = "/try-free/"
status = 200
[[redirects]]
from = "/try-free/changes"
to = "/try-free/"
status = 200
[[redirects]]
from = "/try-free/dbindex"
to = "/try-free/"
status = 200
# REDIRECT and HEADERS examples
# Redirect rule example
# For more information see:- https://www.netlify.com/docs/netlify-toml-reference/
#[[redirects]]
# from = "/*"
# to = "/blog/:splat"
# status = 302
# The default HTTP status code is 301, but you can define a different one e.g.
# Headers rule example
# For more information see:- https://www.netlify.com/docs/netlify-toml-reference/
#[[headers]]
# Define which paths this specific [[headers]] block will cover.
# for = "/*"
#[headers.values]
# X-Frame-Options = "DENY"
# X-XSS-Protection = "1; mode=block"
# Content-Security-Policy = "frame-ancestors https://www.facebook.com"
# Redirects and headers are GLOBAL for all builds – they do not get scoped to
# contexts no matter where you define them in the file.
# For context-specific rules, use _headers or _redirects files, which are
# applied on a PER-DEPLOY basis.
[[redirects]]
from = "/call"
to = "https://savvycal.com/jchris/fireproof"
status = 301