🌐
Chrome Web Store
chromewebstore.google.com › detail › redirector › lioaeidejmlpffbndjhaameocfldlhin
Redirector - Chrome Web Store
✨ Key Features • Create custom ... wildcards and complex URL patterns 🚀 How to Use 1. Click on the Redirector icon in the browser toolbar to open the options page 2....
🌐
Chrome Web Store
chromewebstore.google.com › detail › link-redirect-trace › nnpljppamoaalgkieeciijbcccohlpoh
Link Redirect Trace - Chrome Web Store
The all-in-one redirect path analyzer. It also analyzes protocol headers, REL-canonicals, robots.txt, backlink power, and trust!
🌐
Google Support
support.google.com › webmasters › answer › 9370220
Change of Address tool - Search Console Help
If you have equivalent pages on your new site, providing redirects from the old site to the new and providing rel=canonical tags can reduce the number of old URLs shown in Search. The tool runs a quick check before sending the move request to Google, to confirm that you own both sites, and to check for 301s on a few pages on your site.
🌐
WhereGoes
wheregoes.com
Link Checker | Redirect Checker - WhereGoes
It is best to test your URLs to ensure they go to the correct places and do not encounter an error 404 along the way. Keep in mind, if you end up creating redirect chains, any error encountered during the redirect process could prevent the user from reaching the final destination. If you are an SEO expert, you are continually looking to increase your website’s rankings. Google...
🌐
Google Support
support.google.com › webmasters › thread › 288036427 › how-to-redirect-urls-for-google-sites-in-google-search-console
How to redirect URLs for Google Sites in Google Search Console - Google Search Central Community
July 29, 2024 - Skip to main content · Search Console Help · Sign in · Google Help · Help Center · Community · Search Console · Terms of Service · Submit feedback · Send feedback on
🌐
Google
developers.google.com › search central › documentation › redirects and google search | google search central
Redirects and Google Search | Google Search Central | Documentation | Google for Developers
Setting up server-side redirects requires access to the server configuration files (for example, the .htaccess file on Apache) or setting the redirect headers with server-side scripts (for example, PHP). You can create both permanent and temporary redirects on the server side. If you need to change the URL of a page as it is shown in search engine results, we recommend that you use a permanent server-side redirect whenever possible.
🌐
Chrome Web Store
chromewebstore.google.com › detail › url-redirector › blkdhdiicfaeemdhopcladmcjmblmhpj
Url Redirector - Chrome Web Store
To redirect the URL from X to Y based on user provided filters. In addition, can have excluded paths · This tool is use when we need to auto redirect the url from x to y. In addition have option to allow the excluded path.
🌐
urllo
urllo.com
URL Redirect Service & Link Management Platform | urllo
Growth Advisor Kevin Indig breaks down his first-of-its-kind UX research into Google's AI Overviews. ... Check URL redirects, status codes, redirect chains and DNS health in bulk.
Find elsewhere
🌐
Chrome Web Store
chromewebstore.google.com › detail › redirect › lfoabmjnfpgnafoagflchdgblfhnfccg
Redirect - Chrome Web Store - Google
Redirect: Your Ultimate URL Redirection Tool Tired of manually navigating through multiple pages to reach your desired destination? Redirect is here to streamline your browsing experience!
🌐
Localrank
localrank.so › tools › url-redirect-checker
URL Redirect Checker - LocalRank
March 19, 2025 - SEO-friendly redirects: For SEO performance, it ensures redirects send the right signal to Google, avoiding penalties from tools like Moz or SEOsly. Simply enter the URL you want to check, and after clicking “accept”, you’ll see where the URL goes.
🌐
Redirect Checker
redirect-checker.org
Redirect Checker | Check your Statuscode 301 vs 302
· Search Engine Bots (GoogleBot, Google Mobile Bot, Yandex, BingBot, Baidu, Yahoo Slurp, Naver,... ... Thank you for sharing our "Redirect Checker". © SERP-Eye Best Solutions for Webmasters, SEOs and Online Marketeers · You like our tool or but are missing particular features?
🌐
SE Ranking
seranking.com › free-tools › redirect-checker.html
Free Redirect Checker with Bulk Redirect Check
January 9, 2026 - With a 301 redirect, the SERP won’t show the old URL while a new one gets indexed. With a 302 redirect, both addresses can be indexed, preserving the authority of the original page. ... This tool tracks the redirects of the entered URLs and shows how many redirects each URL has.
🌐
Launch Happy
launchhappy.co › guides › set-up-a-301-redirect
Guide: Set up a 301 Redirect and Notify Google [Step-by-Step SEO Training] — Launch Happy | Squarespace Designers & SEO Experts
August 12, 2022 - After you’ve created a redirect, you should let Google know, so they can index your new URL. You can do this by submitting the newly renamed page to Google through the Google Search Console, URL inspection tool.
🌐
What's My DNS
whatsmydns.net › redirect-checker
Redirect Checker
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 ...
🌐
Chrome Web Store
chromewebstore.google.com › detail › url-auto-redirector › mckfcfnegaimgcgepikhdnajpkkhdnkn
URL Auto Redirector - Chrome Web Store
URL Auto Redirector redirects URLs automatically with Regular Expression presets. It enables you to skip referral/AD pages, trim query strings and adapt mobile pages gracefully, which is time-saving, helps to be more productive and improves ...
🌐
Google
docs.cloud.google.com › load balancing › set up a url redirect for a classic application load balancer
Set up a URL redirect for a classic Application Load Balancer | Cloud Load Balancing | Google Cloud Documentation
Update the URL map file lb-map-config.yaml by adding this to the end of the file: hostRules: - hosts: - '*' pathMatcher: path-matcher-1 name: web-map-http pathMatchers: - defaultUrlRedirect: hostRedirect: NEW_HOSTNAME # Omit to keep the requested host httpsRedirect: false pathRedirect: /NEW_PATH # Omit to keep the requested path redirectResponseCode: MOVED_PERMANENTLY_DEFAULT stripQuery: true name: path-matcher-1
Top answer
1 of 4
34

I had built a Chrome extension which does this.

Note: I built this for just 2 sites - just for the heck of it - by no means it's professional quality. Please don't flame me for crappy code :)

Edit: Updated to manifest v2, which brings in certain additional restrictions.

manifest.json

{
  "name": "URL Redirect",
  "version": "0.2",
  "description": "Checks URL and redirects as required.",
  "background": { 
     "page":"bg.html"
     },
   "manifest_version": 2,
   "content_scripts": [
   {
     "matches": ["http://*/*", "https://*/*"],
     "js": ["content.js"]
   }
   ],
  "permissions": ["tabs"]
}

bg.html

<html>
  <script src="redirect.js"></script>
</html>

redirect.js

chrome.extension.onRequest.addListener(function(request, sender) {
        chrome.tabs.update(sender.tab.id, {url: request.redirect});
    });

content.js

var pattern=/\bBlocked/;
var viewtext_base_url = "http://viewtext.org/article?url=";
var newurl;
if (pattern.test(window.document.title)) // if it matches pattern defined above
{
  newurl = viewtext_base_url + encodeURIComponent(window.location.href);
  chrome.extension.sendRequest({redirect: newurl}); // send message to redirect

}

To install this, create files with filenames as mentioned above the codeblock.

Once all 3 files are created, Click on Chrome Menu → Tools → Extensions. Click the "+" on Developer Mode. Click on Load Unpacked extension and point to the directory where the files are stored.

Edit the files are required, and uninstall and reinstall the extension as mentioned above

2 of 4
21

I know I am a bit late in the game to answer this question Still I would like to answer this for future readers. Have a look at

Requestly - Open Source Chrome Extension to modify Network Requests.

Github Repo - https://github.com/requestly/requestly

Currently, You can set up rules for

  1. Redirect a request URL to another url.
  2. Block some requests.
  3. Replace some part in the URL with another string. (Even the whole URL can be replaced)
  4. Add/Remove/Modify Headers in HTTP(s) Request and Response. You can set up Header Modification Rules only for specified URLs now.

Screenshots for more understanding:

  • List of Rules

  • List of Rule Types

  • New Redirect Rule

There are a lot of things in the roadmap to be covered like

  • Setting custom headers (Done)
  • Switching User Agents
  • Setting parameters in request (Done)

.. and a lot more.

PS: I have created this So you can blame me if you do not find this helpful :)

🌐
Google Groups
groups.google.com › g › k12appstech › c › U5U_GItZcpI
Google Sites URL Redirect
I believe you need to setup a redirect page on the first page which redirect to the second page. You can't do sub-URL forwarding in DNS because DNS really only understands top level domains.
🌐
RankWatch
rankwatch.com › free-tools › url-Redirect-checker
Best Redirect Checker Tool Online | Bulk Url Redirect Checker
Moreover, redirect checkers can ... by tools available in the market. This can prove to be beneficial for determining the status code of redirects and selecting a URL-shortening service that employs 301 redirects for optimal SEO benefits. According to some Google employees, ...