You don’t need to do anything with it. This usually means the enqueued URL redirects somewhere else (likely a different domain), so you wouldn’t get the desired data anyway. Crawlee automatically stops processing such URLs.
Also, just in case, there’s an option called followRedirect that might be helpful depending on your use case. It allows you to control whether redirects should be followed or not:
https://crawlee.dev/api/next/core/interface/HttpRequest#followRedirectusage example:
const response = await gotScraping({
url: 'https://www.example.com',
method: 'POST',
proxyUrl,
body: `some_payload`,
followRedirect: false
}