---
title: Redirects Checker
url: "https://pressable.com/web-tools/redirects-checker/"
published: 2025-04-23
modified: 2025-06-04
author: Wayne McWilliams
---

[ Web Tools ](/web-tools/) 

# Free Redirects Checker

Trace the full redirect path of any URL, helping you identify redirect loops, status codes, and destination URLs for troubleshooting and SEO optimization.

 
 

 Enter URL:
 
 Check Redirect 

 Redirect Chain:

 if (!url) { resultDiv.textContent = 'Please enter a valid URL.'; return; }

 resultDiv.textContent = 'Checking...';

 const data = new FormData(); data.append('action', 'press\_redirect\_trace'); data.append('url', url);

 fetch("https://pressable.com/wp-admin/admin-ajax.php", { method: 'POST', credentials: 'same-origin', body: data }) .then(response => response.json()) .then(response => { if (response.success) { resultDiv.textContent = response.data; } else { resultDiv.textContent = 'Error: ' + response.data; } }) .catch(() => { resultDiv.textContent = 'An error occurred.'; }); }

 document.addEventListener('DOMContentLoaded', function () { document.getElementById('press-redirect-check-button').addEventListener('click', runRedirectCheck);

 document.getElementById('press-redirect-form').addEventListener('keydown', function (event) { if (event.key === 'Enter') { event.preventDefault(); runRedirectCheck(); } });

 const params = new URLSearchParams(window.location.search); let prefillUrl = params.get('d');

 if (prefillUrl) { if (!/^https?:\\/\\//i.test(prefillUrl)) { prefillUrl = 'https://' + prefillUrl; } document.getElementById('press-redirect-url').value = prefillUrl; runRedirectCheck(); } });
