# Non-301 Redirects All 302, 303, 307, 308 and meta refresh redirects chains found in the crawl. **Priority**: Critical **Impact**: Negative ## What issues it may cause The URLs will temporarily remain in search engine results pages although the temporary redirect will eventually be seen as permanent by search engines. The PageRank from the redirecting URL will not be consolidated to the redirect target. ## How do you fix it If the redirect is intended to be permanent then the redirect type should be changed to a 301. ## What is the positive impact The redirect target pages will be indexed faster and PageRank will be passed to the redirect target, potentially improving rankings, traffic and conversions. ## How to fetch the data for this report template You will need to run a crawl for report template to generate report. When report has been generated and you have crawl id you can fetch data for the report using the following query: ```graphql query GetReportStatForCrawl( $crawlId: ObjectID! $reportTemplateCode: String! $after: String ) { getReportStat( input: {crawlId: $crawlId, reportTemplateCode: $reportTemplateCode} ) { crawlUrls(after: $after, reportType: Basic) { nodes { url redirectChain redirectedToUrl foundAtUrl foundAtSitemap deeprank level httpStatusCode metaRedirect redirectedToStatusCode redirectCount foundInGoogleAnalytics foundInGoogleSearchConsole foundInBacklinks foundInList foundInLogSummary foundInWebCrawl foundInSitemap } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"non_301_redirects"} ```