🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

github.com/tj/go-redirects

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/tj/go-redirects

v0.0.0-20200911105812-fd1ba1020b37
Source
Go
Version published
Created
Source

Redirect

Redirect format parser to match Netlify's format.

Example

# Implicit 301 redirects
/home              /
/blog/my-post.php  /blog/my-post
/news              /blog
/google            https://www.google.com

# Redirect with a 301
/home         /              301

# Redirect with a 302
/my-redirect  /              302

# Rewrite a path
/pass-through /index.html    200

# Show a custom 404 for this path
/ecommerce    /store-closed  404

# Single page app rewrite
/*    /index.html   200

# Proxying
/api/*  https://api.example.com/:splat  200

# Forcing
/app/*  /app/index.html  200!

# Params
/	/something	302	foo=bar
/	/something	302	foo=bar bar=baz

yields

[
{
  "From": "/home",
  "To": "/",
  "Status": 301,
  "Force": false,
  "Params": null
},
{
  "From": "/blog/my-post.php",
  "To": "/blog/my-post",
  "Status": 301,
  "Force": false,
  "Params": null
},
{
  "From": "/news",
  "To": "/blog",
  "Status": 301,
  "Force": false,
  "Params": null
},
{
  "From": "/google",
  "To": "https://www.google.com",
  "Status": 301,
  "Force": false,
  "Params": null
},
{
  "From": "/home",
  "To": "/",
  "Status": 301,
  "Force": false,
  "Params": null
},
{
  "From": "/my-redirect",
  "To": "/",
  "Status": 302,
  "Force": false,
  "Params": null
},
{
  "From": "/pass-through",
  "To": "/index.html",
  "Status": 200,
  "Force": false,
  "Params": null
},
{
  "From": "/ecommerce",
  "To": "/store-closed",
  "Status": 404,
  "Force": false,
  "Params": null
},
{
  "From": "/*",
  "To": "/index.html",
  "Status": 200,
  "Force": false,
  "Params": null
},
{
  "From": "/api/*",
  "To": "https://api.example.com/:splat",
  "Status": 200,
  "Force": false,
  "Params": null
},
{
  "From": "/app/*",
  "To": "/app/index.html",
  "Status": 200,
  "Force": true,
  "Params": null
},
{
  "From": "/",
  "To": "/something",
  "Status": 302,
  "Force": false,
  "Params": {
    "foo": "bar"
  }
},
{
  "From": "/",
  "To": "/something",
  "Status": 302,
  "Force": false,
  "Params": {
    "bar": "baz",
    "foo": "bar"
  }
}
]

GoDoc

FAQs

Package last updated on 11 Sep 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts