Redirects
{{check.redirectCount}}
Total Time
{{formatDuration check.totalTimeMs}}
URLs
| Type |
URL |
| Input |
{{check.inputUrl}} |
{{#if check.finalUrl}}
| Final |
{{check.finalUrl}} |
{{/if}}
{{#if check.error}}
Error: {{check.error}}
{{/if}}
{{#if check.loopDetected}}
⚠️ Redirect Loop Detected! The URL redirects in a loop, which can cause infinite redirects and poor user experience.
{{/if}}
{{#if check.hops}}
Redirect Chain Analysis
Visual Flow Chart
{{mermaidDiagram}}
Detailed Hop Information
| Hop |
URL |
Status |
Type |
Latency |
Content-Type |
{{#each check.hops}}
| {{hopIndex}} |
{{url}} |
{{#if statusCode}}
{{statusCode}}
{{else}}-{{/if}}
|
{{redirectType redirectType}} |
{{#if latencyMs}}{{latencyMs}}ms{{else}}-{{/if}} |
{{#if contentType}}{{contentType}}{{else}}-{{/if}} |
{{/each}}
{{/if}}
{{#if analysis}}
Analysis Results
{{#if analysis.ssl}}
🔒 SSL Certificate Analysis
{{#each analysis.ssl}}
| Host: {{host}} |
| Days to Expiry |
{{#if daysToExpiry}}{{daysToExpiry}} days{{else}}N/A{{/if}} |
| Issuer |
{{#if issuer}}{{issuer}}{{else}}N/A{{/if}} |
| Protocol |
{{#if protocol}}{{protocol}}{{else}}N/A{{/if}} |
{{#if warningsJson}}
SSL Warnings:
{{#each warningsJson}}
- {{this}}
{{/each}}
{{/if}}
{{/each}}
{{/if}}
{{#if analysis.seo}}
🔍 SEO Analysis
| SEO Factor |
Status |
| Robots.txt |
{{analysis.seo.robotsTxtStatus}} |
| Indexing |
{{#if analysis.seo.noindex}}🚫 No Index{{else}}✅ Indexable{{/if}} |
| Following |
{{#if analysis.seo.nofollow}}🚫 No Follow{{else}}✅ Followable{{/if}} |
| Sitemap |
{{#if analysis.seo.sitemapPresent}}✅ Present{{else}}❌ Not Found{{/if}} |
{{#if analysis.seo.noindex}}
⚠️ SEO Warning: This page is marked as "noindex" and will not appear in search results.
{{/if}}
{{/if}}
{{#if analysis.security}}
🛡️ Security Analysis
| Security Check |
Result |
| Safe Browsing |
{{analysis.security.safeBrowsingStatus}} |
| Mixed Content |
{{analysis.security.mixedContent}} |
| HTTPS Downgrade |
{{#if analysis.security.httpsToHttp}}⚠️ Detected{{else}}✅ None{{/if}} |
{{#if analysis.security.httpsToHttp}}
🔒 Security Warning: HTTPS to HTTP downgrade detected. This can expose sensitive data in transit.
{{/if}}
{{/if}}
{{/if}}
💡 Recommendations
{{#if_eq check.status "LOOP"}}
- Fix Redirect Loop: Review your redirect configuration to prevent infinite loops
- Check Server Configuration: Ensure proper redirect rules in your web server
- Monitor Performance: Redirect loops can severely impact site performance
{{/if_eq}}
{{#if check.loopDetected}}
- Immediate Action Required: Fix the redirect loop to prevent poor user experience
{{/if}}
{{#if analysis.security.httpsToHttp}}
- Security Priority: Ensure all redirects maintain HTTPS encryption
- Update Configuration: Modify server rules to prevent HTTPS downgrades
{{/if}}
{{#if analysis.seo.noindex}}
- SEO Review: Consider if this page should be excluded from search engines
{{/if}}
- Minimize Redirects: Each redirect adds latency - aim for direct links when possible
- Use 301 for Permanent: Use HTTP 301 for permanent URL changes for better SEO
- Monitor Regularly: Set up monitoring to catch redirect issues early
- Test Changes: Always test redirect changes in staging before production