www.whatsmydns.net Open in urlscan Pro
2606:4700:20::ac43:44fa  Public Scan

URL: https://www.whatsmydns.net/redirect-checker
Submission Tags: falconsandbox
Submission: On June 28 via api from US — Scanned from DE

Form analysis 1 forms found in the DOM

https://www.whatsmydns.net/redirect-checker

<form id="f" action="https://www.whatsmydns.net/redirect-checker" class="flex my-4">
  <input id="q" name="q" value="" type="text" placeholder="example.com" autocapitalize="off" autocorrect="off" autofocus="autofocus" autocomplete="off"
    class="w-full sm:w-64 sm:mr-2 mb-3 sm:mb-0 leading-tight appearance-none border border-gray-400 hover:border-gray-500 rounded py-2 px-3 text-gray-700 focus:outline-none focus:ring">
  <button type="submit" class="leading-tight bg-white text-gray-700 font-semibold py-2 px-3 border border-gray-400 hover:border-gray-500 rounded focus:outline-none focus:ring inline-flex items-center">
    <span class="mr-2">Check Redirects</span>
    <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
      <path fill-rule="evenodd" d="M10.293 15.707a1 1 0 010-1.414L14.586 10l-4.293-4.293a1 1 0 111.414-1.414l5 5a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0z" clip-rule="evenodd"></path>
      <path fill-rule="evenodd" d="M4.293 15.707a1 1 0 010-1.414L8.586 10 4.293 5.707a1 1 0 011.414-1.414l5 5a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0z" clip-rule="evenodd"></path>
    </svg>
  </button>
</form>

Text Content

 1. What's My DNS?
 2. DNS Tools
 3. Redirect Checker


REDIRECT CHECKER

Check Redirects

Show each step of the redirect process to check the final destination of a URL
or website.


WHAT IS A URL OR DOMAIN NAME REDIRECT AND WHY WOULD YOU WANT TO DO IT?

A redirect is a way of automatically transferring you from one webpage to
another without any user interaction.

Redirects are often used in social media with short links where you do not want
the link to take up too much space compared to the accompanying text, for
example https://t.ly/w1lT may automatically redirect you to
https://www.example.com/a-very-long-page-name.

While social media is one use case for redirects, there are many more
possibilities - for example the link example.com/tv could redirect to
https://www.example.com/promos/exclusive-tv-only-deal. As you can see, using a
short and memorable URL can be used in offline advertising to make it easy for
your customers to find a webpage and adds the benefit of being able to track how
many people visit these pages to verify marketing campaign performance.


WHY WOULD YOU WANT TO CHECK REDIRECTS?

There are many reasons for wanting to check the redirection flow before visiting
a link, some examples include:

User tracking - Often redirects do not go straight from the initial page to the
final page but take many steps along the way before reaching the final
destination page. They can either redirect you to another page within the same
website (domain name) or to another website or domain name altogether. This
chain of redirects gives the opportunity for each intermediate site to track
your behavior, set cookies, etc. This is often used in affiliate marketing where
links contain codes which give publishers a portion of revenue for each referral
they make.



Avoiding malware - It is possible for a redirect to take you from
https://www.safe-site.com to https://www.first-evil-site.com/ to
https://www.second-evil-site.com/virus. This chain of redirects gives the
opportunity for each intermediate site to potentially deliver your browser
harmful malware. Checking URLs for redirects before visiting them can uncover
unwanted behavior.

Validating redirects - Web developers often need to check for redirects when
building websites or online applications. Checking for redirects can sometimes
be a frustrating problem because certain types of redirects like to cache their
results which can be hard to clear and ensure things are still behaving as
expected.

Discovering redirect loops - Checking redirects can also be useful if you get
yourself into a redirect loop. This is where page1 redirects to page2, but page2
then redirects back to page1 resulting in an endless loop of redirects.

Removing intermediate redirects - Often redirects will redirect to redirects and
can be chained many times until browsers give up. Each time a page is requested,
additional overhead is created and slows down the total response time. If the
redirect goes to another domain name, then this will also initiate an additional
DNS lookup adding even more time to the response. If you can have the first step
on a long redirect chain go directly to the final destination, you can improve
response times and ensure browsers don't give up before reaching the final
destination.


HOW DO YOU CHECK FOR REDIRECTS?

Checking the redirection steps of a URL is easy. You simply enter the initial
URL or domain name into the search box at the top of the page and press the
check redirects button. The tool will automatically visit the page, check if
there is a redirect and what type of redirect it is and continue to the next
page, repeating the process until the final page does not redirect any further.

The redirect checker tool on this page will allow you to see the full redirect
process of any URL. It is considered the more verbose and technical version of
the simpler URL unshortener tool which simply shows the final destination
without any of the technical details.


HOW DO YOU FIND THE STATUS CODE OF A REDIRECT?

When requesting a webpage, the website will respond with a HTTP status code -
this code indicates the redirect type.

The underlying HTTP request and response may look something like the following
(shortened to include the relevant sections only):

GET /about HTTP/1.1
Host: google.com

HTTP/1.1 301 Moved Permanently
Location: http://www.google.com/about

There are many different types of redirects but the most common are outlined
below:

301 Moved Permanently - This indicates that the page requested has moved
permanently and will not be returning. Browsers will remember this status, and
if visiting the original URL again will not send the request to the server
asking for the page but will automatically make the request to the destination
in which it was moved. 301 redirects are the preferred redirect type that web
developers use for SEO purposes when moving a page to a new location. This tells
search engines to give all the value of the old page to the new page.

302 Found - This type of redirect is a little vague, as it indicates that the
page requested as found but it is at another location. This type of redirect is
often used in place of a temporary redirect where the initial page will likely
come back in the future. This is often used when a webpage is under maintenance.

307 Temporary Redirect - This redirect is very specific that the page is
temporary redirected and should not have the result remembered in the browser as
the original page will come back at some point.


EXAMPLE REDIRECTS

The links below can be used to demonstrate the functionality of this tool.

https://www.whatsmydns.net/example-301-redirect - 301 redirect

https://www.whatsmydns.net/example-302-redirect - 302 redirect

https://www.whatsmydns.net/example-307-redirect - 307 redirect

https://www.whatsmydns.net/example-multi-redirect - Multiple redirect

https://t.ly/w1lT - URL shortener redirect


OTHER URL TOOLS

URL Unshortener Redirect Checker


Support Me If you find this service useful for checking DNS propagation, please
consider donating to help pay hosting costs and keeping the site up to date.
Donate via PayPal
DNS Tools DNS Checker DNS Lookup Reverse DNS Lookup What's My IP Address? DNS
Guides DNS Security Flush DNS Hosts File
DNS Lookup A Record Lookup AAAA Record Lookup CAA Record Lookup CNAME Record
Lookup MX Record Lookup NS Record Lookup PTR Record Lookup SOA Record Lookup SRV
Record Lookup TXT Record Lookup
Articles & Blog DNS Articles Development Blog DNS Servers Global DNS Servers
Australian DNS Servers France DNS Servers New Zealand DNS Servers United Kingdom
DNS Servers United States DNS Servers
Browser Extension Chrome new Social Media Contact Email: info@whatsmydns.net
Twitter: @whatsmydns Legal Privacy Policy

Powered By

00:00/12:12
10 Sec

9.8K

0
AI Boom Is About Cerebral Valley: Y Combinator CEO



Next
Stay




AI Boom Is About Cerebral Valley: Y Combinator CEO

NOW
PLAYING

Bitwise AM's Hougan on Crypto Market Outlook

NOW
PLAYING

Can AI Become China's New Growth Driver?

NOW
PLAYING

India's Vaishnaw on Deals, Wins From Modi's US Trip

NOW
PLAYING

Discord CEO Jason Citron on AI, Midjourney

NOW
PLAYING

Fastly Aims for Evolution to Edge-Cloud Leader

NOW
PLAYING

Twitch CEO Dan Clancy on AI: Still Work to Be Done

NOW
PLAYING

Comgest AM's Kaye on Softbank Outlook

NOW
PLAYING

Elon Musk: Tesla is coming to India 'as soon as humanly possible'

NOW
PLAYING

Arrow Left #1 Icon Created with Sketch.
Arrow right #1 Icon Created with Sketch.
ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_~

x