We use cookies.This website uses essential cookies to operate core features. With your consent, we also use analytics cookies to understand traffic and improve the service. For more details, see our .
If this tool helped you, you can buy us a coffee ☕
Paste a short link to quickly reveal the original long URL. Expand shortened URLs safely and check where they redirect before clicking.
This tool supports popular short URL services (like t.cn, bit.ly, dwz.cn, etc.) and automatically follows redirects to uncover the original destination.

URL Redirect Checker
Analyze URL redirect paths and HTTP status codes to diagnose redirect issues and boost your SEO.

URL to JSON Parser
Parse URL strings into structured JSON to quickly extract key information like protocols, parameters, and paths.

URL Hex Encoder & Decoder
Convert between URL strings and hex-encoded formats online to easily solve special character transmission issues.

URL Extractor
Parse and extract valid URLs from text or HTML source code with support for multiple protocols.

URL Redirect Checker
Analyze URL redirect paths and HTTP status codes to diagnose redirect issues and boost your SEO.

URL to JSON Parser
Parse URL strings into structured JSON to quickly extract key information like protocols, parameters, and paths.

URL Hex Encoder & Decoder
Convert between URL strings and hex-encoded formats online to easily solve special character transmission issues.

URL Extractor
Parse and extract valid URLs from text or HTML source code with support for multiple protocols.

URL Encoder & Decoder
Convert special characters and spaces into percent-encoded URLs and vice versa to solve character compatibility issues in web development and data transmission.
Scenario 1: Verifying suspicious short links before clicking
If you receive a short link (like bit.ly/xxxx) via SMS or messaging apps and aren't sure if it's a phishing site, paste it into the unshortener. In seconds, you'll see exactly where it redirects. If it's an unfamiliar domain or a fake page, don't click it.
Scenario 2: Content creators checking external link safety
When managing social media accounts or blogs, you often need to share third-party short links. Run them through this tool before posting to ensure they don't redirect to malicious or dead pages, protecting your followers.
Scenario 3: Tracing the source of a shared link
If you see promotional content with a short link and want to know the original article or product page it points to, expanding it reveals the full URL. This helps you decide if it's worth sharing or buying.
A short link is essentially an HTTP 301 or 302 redirect service. URL shortening providers (like bit.ly or t.co) store a record in their database mapping a short code to the original long link. When you access this short link via a browser or crawler, the server returns a redirect instruction, telling the client to automatically jump to the original address.
What this unshortener does is initiate a GET request without following the redirect. It directly reads the Location field in the HTTP response headers and displays its value. During this process, no scripts on the target page are executed and no resources are downloaded, making it much safer than opening the link in a browser.
https://bit.ly/3xYzAbC). Note: It must include the protocol header http:// or https://.Primary Example: Unshortening a bit.ly link
Suppose you see a short link in a promotional message: https://bit.ly/3abc123. Open this tool, paste it into the input box, and click unshorten.
https://www.example.com/promotion?utm_source=wechat&utm_medium=socialComparative Example: Unshortening a link with multiple redirects
Enter https://t.cn/A6abc123 (a Weibo short link). The result might show:
https://weibo.com/ttarticle/p/show?id=2309404xxxxxxxxInterpretation: It took 3 redirects to reach the actual page. Multiple redirects can happen due to old link migrations or added tracking parameters. If the final domain is a known platform (weibo.com), it is generally trustworthy.
| Result Type | Meaning | Recommended Action |
|---|---|---|
| Status Code 200 (Rare) | The short link has no redirect and returns content directly (might be the provider's landing page). | The link might not be a traditional short link. Proceed with caution. |
| Status Code 301 or 302 + Location present | Normal short link; will redirect to the URL in the Location header. | Check if the destination domain is trustworthy. |
| Status Code 404 or 410 | The short link is dead or deleted. | Do not use it; likely an expired marketing link. |
| Redirect Count ≥ 3 | Multiple redirects exist; may involve tracking or link aggregators. | Check every intermediate address, paying special attention to suspicious short link domains. |
| Empty result or timeout | The tool cannot connect or the short link is unreachable. | Check your network connection, or manually test if the short link still works. |
bit.ly/xxxx without https:// will cause the tool to fail. Ensure you paste the full URL.Q: Why does the tool say "Unable to resolve" after I enter a short link?
Possible reasons: The short link has expired, the provider has strict HTTPS requirements, or the input format is incorrect (e.g., extra spaces). Try checking if the link works in your browser first, then try again.
Q: Why is the unshortened link different from what I actually see in my browser?
This happens because browsers execute JavaScript before redirecting, while the unshortener only tracks HTTP redirects. If the target page uses JS window.location to redirect, the tool cannot capture it. In this case, we recommend using your browser's developer tools (Network tab) to view the full flow.
Q: Can this tool unshorten WeChat short links?
Internal WeChat short links (like https://weixin.qq.com/g/xxx) can usually be unshortened. However, some links only work within the WeChat client context (e.g., requiring cookie validation). The unshortener might not be able to access them, resulting in a failure.
Q: Will unshortening a link leak my personal information?
No. The tool only sends an HTTP request to the provided short link. It does not store any user data or track your IP address. All processing is done on the server side, and the results are only displayed to you.
Q: Can I unshorten multiple short links in bulk?
Currently, this tool processes one short link at a time. If you need to unshorten multiple links, enter them one by one with a few seconds in between to avoid being rate-limited by the target server.
Q: What is the difference between status codes 301 and 302 in the results?
301 indicates a permanent redirect, meaning future requests can go directly to the new address. 302 is a temporary redirect, meaning the destination might change later. For regular users, this distinction isn't crucial; just focus on whether the final address is safe.