Tested tool guide
Tested browser tools
Checked August 16, 2026
What URL Structure Analyzer does, with a checked example
Paste a URL and this tool judges its structure the way SEO guidance does: length, path depth, query parameters, word separators, keyword presence, and HTTPS. Each check passes or flags, the flags produce recommendations, and the results roll up into one score. The surprise for most users: the score is structure-only. A short URL still fails on underscores or tracking parameters, and the fixes apply to URLs you are about to publish - rewriting a live URL without a 301 redirect from the old path destroys rankings instead of improving them.
Worked example
A concrete input and expected output from the current implementation.
Input
https://example.com/blog/post_title_2024?id=123&ref=partner
->
Expected output
HTTPS: pass - secure scheme
Length: 59 characters - short
Depth: 2 path segments - flat
Parameters: 2 (id, ref) - flag: query string dilutes the keyword slug
Separators: underscore in post_title_2024 - flag: replace with hyphens
Keywords: "post title 2024" readable in the slug - pass
Overall: 4 of 6 checks pass. Suggested rewrite: https://example.com/blog/post-title-2024 with the parameters removed.
Four checks pass on inspection of the string itself: the scheme is https, the URL is 59 characters, the path is two segments deep, and the slug reads as words. The two flags are equally visible: the underscore joins "post" and "title" into one token where Google's guidance calls for hyphens, and the id and ref parameters add tracking clutter. The suggested rewrite is exactly those two fixes applied.