During my crawling, some pages failed due to unexpected redirection and no response returned. How can I catch this kind of error and re-schedule a request with original url, not
you can override the RETRY_HTTP_CODES in settings.py
This is the settings I use for proxy errors:
RETRY_HTTP_CODES = [500, 502, 503, 504, 400, 403, 404, 408]