DEV Community

_s._hyn
_s._hyn

Posted on

Redirect Chains Are Killing Your SEO — Here's How to Audit Them

Hook

I sent the same link to three different audiences last week and had no idea which group was actually clicking. My dashboard showed 600 sessions. That number was useless, as I had no way of knowing which audience was driving the most traffic, and I was about to launch a new campaign with 12 different links, each with its own unique content.

The Problem In Depth

Most people use URL shorteners without thinking about the consequences of redirect chains on their SEO. A redirect chain occurs when a URL is redirected multiple times before reaching its final destination. This can lead to a loss of link equity, as search engines may not follow the chain of redirects, resulting in a decrease in ranking. For example, if you have a link that redirects from example.com to bit.ly and then to your-website.com, you may lose some of the link equity that would have been passed to your website. I used to use curl to test my redirects, but it was time-consuming and didn't give me the insights I needed.

curl -I https://example.com
Enter fullscreen mode Exit fullscreen mode

This would show me the HTTP headers, including the redirects, but I had to manually follow each redirect to see where it led.

What You Actually Tried

I decided to try a different approach by using a URL shortener that provided more detailed analytics. I was looking at the device breakdown in ShortURL and noticed that 73% of my clicks came from iOS devices, which explained why my landing page wasn't converting as well as I had hoped. I had also set up a custom slug for my link, which made it easier to track and analyze the traffic. I was surprised to find that the majority of my traffic was coming from mobile devices in Southeast Asia, which wasn't a demographic I had targeted before.

What You Found / Results

The country breakdown in ShortURL showed that 60% of my clicks came from mobile users in Southeast Asia, which explained why my landing page wasn't converting. I had designed the page with a Western audience in mind, and it wasn't optimized for mobile devices. I made some changes to the page, including optimizing the images and simplifying the layout, and saw a significant increase in conversions. I was also able to track the effectiveness of my different marketing channels, including social media and email marketing, and adjust my strategy accordingly.

Caveats / When This Doesn't Work

It's worth noting that using a URL shortener may not be the best approach for every situation. If you're dealing with sensitive or high-stakes content, you may want to consider using a more secure and transparent method of tracking and analyzing your traffic. Additionally, if you're working with a large volume of traffic, you may need to upgrade to a paid plan or use a more robust analytics tool.

I learned that using a URL shortener with detailed analytics can provide valuable insights into your traffic and help you optimize your marketing strategy. What are you using for link analytics right now — and has it ever surprised you with something unexpected?

Top comments (0)