The 7.1 blog URL pattern in 2026
Squarespace 7.1 blog posts live at /{blog-slug}/{post-slug}/. The blog slug is whatever you named the blog page when you created it ('blog', 'journal', 'field-notes', 'writing' are the most common). The post slug is set per-post on the post editor's SEO panel, defaulting to a lowercase-hyphenated version of the post title. Categories add a /category/{name}/ archive URL; tags add a /tag/{name}/ archive URL — both share the same noindex default. The pattern is consistent across all 7.1 templates and across every blog page on the same site.
Legacy 7.0 URL patterns you might inherit
Some 7.0 templates shipped date-based URL patterns: /blog/2018/03/15/post-slug/ or /blog/2018/march/post-slug/. These patterns have aged poorly — date prefixes look stale, force readers to re-evaluate the relevance of older posts before clicking, and create the impression that the content is dated when the underlying material may still be current. Migrations from these patterns to the 7.1 default require URL Mappings to redirect every historical URL to the new pattern.
Renaming the blog slug safely with URL Mappings
Renaming the blog slug — moving from /blog/ to /journal/, for instance — is a destructive operation. Every post URL changes the moment the rename saves. The safe approach: set up wildcard URL Mappings before saving the rename, save the rename, verify a sample of old URLs redirect cleanly to the new pattern, notify Google via Search Console. The wildcard mapping <code>/blog/[name] -> /journal/[name] 301</code> handles every post in a single line<InlineCite n={2} sourceId='sq-url-mappings' />.