For a url of the form
https://www.example.com/i/http://some-image-url.png
Is it possible to redirct to http://some-image-url.png (param after i/)?
with just Editing Redirection rule of AWS S3 bucket website.
<RoutingRules>
<RoutingRule>
<Condition>
<KeyPrefixEquals>i/</KeyPrefixEquals>
</Condition>
<Redirect>
[[config for redirecting to http://some-image-url.png]]
</Redirect>
</RoutingRule>
Location
header) all the way back to the browser, requiring the browser to follow the redirect, which means the browser is required to directly fetch the content from the alterate URL. That, I believe, is actually the exact opposite of what you want. – Michael - sqlbot