1. Nguồn
Live server-side HTTP requests, one hop at a time. The result identifies where its evidence came from.
Trace HTTP status codes (200, 301, 302, 404, 500) and redirect chains for multiple URLs at once. Detect infinite redirect loops and hop latency.
Gửi một URL công khai, tên miền, hoặc từ khóa. Novaverb sẽ chỉ hiển thị bằng chứng mà công cụ này thực sự có thể lấy hoặc đo lường.
This check proves the exact redirect chain a URL produces: every hop's status code, scheme, host, path, Location header and latency, up to the final non-redirect response. Because each hop is requested without auto-following, the chain reported is the chain that exists, including loops and the extra hops that a browser hides from you.
Live server-side HTTP requests, one hop at a time. The result identifies where its evidence came from.
The trace follows server-side HTTP redirects (up to 10 hops per URL) with the selected user agent. Client-side JavaScript redirects and browser-only navigation are outside this check.
Sử dụng phát hiện để xác minh một vấn đề, sau đó kết nối một không gian làm việc khi bạn cần lịch sử, giám sát hoặc phân tích toàn bộ trang web.
Công cụ này theo dõi từng URL từ phía máy chủ, từng bước một, và hiển thị trạng thái HTTP thực của mỗi bước - không chỉ trang cuối cùng. Một thiết lập sạch sẽ chuyển hướng một lần (301) thẳng đến 200 OK. Các bước bổ sung làm chậm các trình thu thập dữ liệu và người dùng và làm loãng giá trị liên kết.
Hai hoặc nhiều chuyển hướng liên tiếp (một chuỗi) nên được gộp lại thành một bước duy nhất chỉ vào URL cuối cùng. Các bước trộn http→https và www→non-www là nguyên nhân phổ biến nhất - hãy kích hoạt kiểm tra miền Canonical để xem liệu mọi biến thể có dẫn đến một URL chuẩn hay không.
Submit the URL you actually publish or link to, not the destination you expect, since the whole point is what happens in between. The user agent can be selected, which matters because some servers redirect crawlers differently from browsers. A chain longer than ten hops is stopped and reported as a chain rather than followed indefinitely.
http://yourdomain.comCác dạng http và không-www là rõ ràng nhất - chúng phơi bày các bước nhảy http→https và www. Mọi dạng đều được chấp nhận.one URL per line (up to 20)Dán một danh sách hoàn chỉnh - mỗi URL được theo dõi độc lập và hiển thị như một hàng có thể mở rộng riêng. Bật kiểm tra canonical để cũng kiểm tra các biến thể http/https và www của mỗi máy chủ.how to fix a redirectĐó là một cụm từ tìm kiếm, không phải là địa chỉ. Công cụ này kiểm tra các URL; sử dụng công cụ Từ khóa cho các thuật ngữ tìm kiếm.Reading '0 redirects' as a failureKhông có chuyển hướng là một kết quả lành mạnh - nó xác nhận rằng URL đã là điểm đến cuối cùng (200 OK, không có bước nhảy).Each URL is requested server-side with the selected user agent and without auto-following, so the exact status code, response headers and Location of every hop are read directly. The chain is walked hop by hop up to ten, each hop is timed, chains of two or more redirects and loops are detected, and the final destination is reported.
RFC 9110 defines HTTP semantics, including what each 3xx status means and how the Location header is resolved. Distinguishing a 301 from a 302 and from a 307 matters because the specification assigns them different permanence and different method-preservation rules, and this check reports the code returned rather than the intent behind it.
Theo dõi từng bước nhảy 3xx và tiêu đề Location của nó theo ngữ nghĩa HTTP.
Đọc thông số kỹ thuậtIt traces a URL's full server-side HTTP redirect chain, showing every hop, each status code, the final destination URL, and the total number of redirects so you can see the complete path a request takes.
A redirect is a server response, using a 3xx status and a Location header, that sends a request from one URL to another. Browsers and crawlers follow it to reach the final destination.
A 301 signals a permanent move and passes ranking signals to the new URL; a 302 signals a temporary move and is not meant to transfer them. Use 301 for permanent URL changes.
A redirect chain is multiple hops before reaching the final URL, like A to B to C. Each hop adds latency and can dilute signals, so collapse chains to a single direct redirect where possible.
Keep it to one hop when you can. Long chains slow page loads and risk crawlers giving up. The tool counts total redirects so you can spot and shorten excessive chains.
Redirects preserve link value and user access when URLs change. A correct 301 forwards ranking signals to the new address; broken or looping redirects waste crawl budget and can strand pages searchers cannot reach.
A redirect loop is when URLs point back to each other endlessly, so no final page is ever reached. The chain trace reveals repeating hops so you can break the cycle.
A 308 is a permanent redirect that, unlike a 301, requires the request method to stay unchanged. Like a 301 it indicates a permanent move, so signals should flow to the new URL.
No. It follows server-side HTTP redirects using status codes and Location headers. Client-side JavaScript redirects and browser-only navigation are out of scope, so those hops will not appear in the traced chain.
The Location header accompanies a 3xx response and names the URL to go to next. The checker reads it at each hop to build the ordered chain up to the final destination.