Proxying Requests Through Netlify
To proxy JamComments requests through your Netlify domain, you can use either netlify.toml or a _redirects file.
Using netlify.toml
Section titled “Using netlify.toml”Add this to your netlify.toml:
[[redirects]] from = "/jamcomments/*" to = "https://go.jamcomments.com/jamcomments/:splat" status = 200Using _redirects
Section titled “Using _redirects”If you prefer a _redirects file, add this line:
/jamcomments/* https://go.jamcomments.com/jamcomments/:splat 200What This Does
Section titled “What This Does”After deploying, any request to your-site.com/jamcomments/* will be proxied to JamComments. Your visitors see your domain in the address bar, but JamComments handles the actual request.