Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: now hot.opensauced.pizza/* redirects to app.opensauced.pizza/explore #4141

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 22 additions & 16 deletions netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,31 @@ targetPort = 3001
deno_import_map = "./netlify/edge-functions/deno.json"

[[redirects]]
from = "https://insight.opensauced.pizza/*"
to = "https://insights.opensauced.pizza/:splat"
status = 301
force = true
from = "https://insight.opensauced.pizza/*"
nickytonline marked this conversation as resolved.
Show resolved Hide resolved
to = "https://insights.opensauced.pizza/:splat"
status = 301
force = true

[[redirects]]
from = "https://insights.opensauced.pizza/*"
to = "https://app.opensauced.pizza/:splat"
status = 301
force = true
from = "https://insights.opensauced.pizza/*"
to = "https://app.opensauced.pizza/:splat"
status = 301
force = true

[[redirects]]
from = "https://beta.insights.opensauced.pizza/*"
to = "https://beta.app.opensauced.pizza/:splat"
status = 301
force = true
from = "https://beta.insights.opensauced.pizza/*"
to = "https://beta.app.opensauced.pizza/:splat"
status = 301
force = true

[[redirects]]
from = "https://oscr.me/:username"
to = "https://app.opensauced.pizza/u/:username/card"
status = 301
force = true
from = "https://oscr.me/:username"
to = "https://app.opensauced.pizza/u/:username/card"
status = 301
force = true

[[redirects]]
from = "https://hot.opensauced.pizza/*"
to = "https://app.opensauced.pizza/explore"
status = 301
nickytonline marked this conversation as resolved.
Show resolved Hide resolved
force = true
Loading