SEO-Friendly URLs in Nuxt · Nuxt SEO

[NuxtSEO](https://nuxtseo.com/ "Home")

- [Modules](https://nuxtseo.com/docs/nuxt-seo/getting-started/introduction)
- [Tools](https://nuxtseo.com/tools)
- [Pro](https://nuxtseo.com/pro)
- [Learn SEO](https://nuxtseo.com/learn-seo/nuxt) [Releases](https://nuxtseo.com/releases)

[1.4K](https://github.com/harlan-zw/nuxt-seo)

[Nuxt SEO on GitHub](https://github.com/harlan-zw/nuxt-seo)

Learn SEO

Master search optimization

Nuxt

 Vue

[SEO Checklist](https://nuxtseo.com/learn-seo/checklist) [Pre-Launch Warmup](https://nuxtseo.com/learn-seo/pre-launch-warmup) [Backlinks & Authority](https://nuxtseo.com/learn-seo/backlinks)

[Mastering Meta](https://nuxtseo.com/learn-seo/nuxt/mastering-meta)

- [Titles](https://nuxtseo.com/learn-seo/nuxt/mastering-meta/titles)
- [Meta Description](https://nuxtseo.com/learn-seo/nuxt/mastering-meta/descriptions)
- [Image Alt Text](https://nuxtseo.com/learn-seo/nuxt/mastering-meta/alt-text)
- [Social Sharing](https://nuxtseo.com/learn-seo/nuxt/mastering-meta/open-graph)
- [Rich Results](https://nuxtseo.com/learn-seo/nuxt/mastering-meta/rich-results)
- [Schema.org](https://nuxtseo.com/learn-seo/nuxt/mastering-meta/schema-org)
- [Twitter Cards](https://nuxtseo.com/learn-seo/nuxt/mastering-meta/twitter-cards)

[ Controlling Crawlers](https://nuxtseo.com/learn-seo/nuxt/controlling-crawlers)

- [Robots Txt](https://nuxtseo.com/learn-seo/nuxt/controlling-crawlers/robots-txt)
- [Sitemaps](https://nuxtseo.com/learn-seo/nuxt/controlling-crawlers/sitemaps)
- [Robot Meta Tag](https://nuxtseo.com/learn-seo/nuxt/controlling-crawlers/meta-tags)
- [Canonical Link Tag](https://nuxtseo.com/learn-seo/nuxt/controlling-crawlers/canonical-urls)
- [HTTP Redirects](https://nuxtseo.com/learn-seo/nuxt/controlling-crawlers/redirects)
- [Duplicate Content](https://nuxtseo.com/learn-seo/nuxt/controlling-crawlers/duplicate-content)
- [llms.txt](https://nuxtseo.com/learn-seo/nuxt/controlling-crawlers/llms-txt)

[ Routes & Rendering](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering)

- [URL Structure](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering/url-structure)
- [Pagination](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering/pagination)
- [Trailing Slashes](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering/trailing-slashes)
- [Query Parameters](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering/query-parameters)
- [Hreflang & i18n](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering/i18n)
- [404 Pages](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering/404-pages)
- [Dynamic Routes](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering/dynamic-routes)
- [Internal Linking](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering/internal-linking)
- [Programmatic SEO](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering/programmatic-seo)
- [Rendering Modes](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering/rendering)
- [Security](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering/security)

[ Launch & Listen](https://nuxtseo.com/learn-seo/nuxt/launch-and-listen)

- [Getting Indexed](https://nuxtseo.com/learn-seo/nuxt/launch-and-listen/going-live)
- [Google Search Console](https://nuxtseo.com/learn-seo/nuxt/launch-and-listen/search-console)
- [Core Web Vitals](https://nuxtseo.com/learn-seo/nuxt/launch-and-listen/core-web-vitals)
- [Indexing Issues](https://nuxtseo.com/learn-seo/nuxt/launch-and-listen/indexing-issues)
- [SEO Monitoring](https://nuxtseo.com/learn-seo/nuxt/launch-and-listen/seo-monitoring)
- [Site Migration](https://nuxtseo.com/learn-seo/nuxt/launch-and-listen/site-migration)
- [IndexNow](https://nuxtseo.com/learn-seo/nuxt/launch-and-listen/indexnow)
- [Debugging](https://nuxtseo.com/learn-seo/nuxt/launch-and-listen/debugging)
- [AI Search Optimization](https://nuxtseo.com/learn-seo/nuxt/launch-and-listen/ai-optimized-content)

1. [Learn SEO for Nuxt](https://nuxtseo.com/learn-seo)
2.
3. [Routes And Rendering](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering)
4.
5. [Url Structure](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering/url-structure)

# SEO-Friendly URLs in Nuxt

Create search-optimized URLs using file-based routing. Learn slug formatting, parameter handling, and route patterns that improve rankings.

[![Harlan Wilton](https://avatars.githubusercontent.com/u/5326365?v=4)Harlan Wilton](https://x.com/harlan-zw)8 mins read Published Dec 17, 2025

What you'll learn

- Use hyphens (not underscores), lowercase, under 60 characters
- Path segments for indexed content, query params for filters/sorting
- Set canonical URLs to consolidate filter variations like `?sort=price`

URLs appear in search results before users click. `/blog/vue-seo-guide` tells users what to expect. `/p?id=847` doesn't. Search engines use URLs to understand page hierarchy and relevance. Well-structured URLs improve click-through rates by up to 15%.

Nuxt's file-based routing generates SEO-friendly URLs automatically from your `pages/` directory structure.

## [Quick Setup](#quick-setup)

File-based routing in `pages/`:

```
pages/
  blog/
    [slug].vue          → /blog/vue-seo-guide
  products/
    [category]/
      [slug].vue        → /products/phones/iphone-15
```

pages/blog/[slug].vue

```
<script setup lang="ts">
const route = useRoute()
const slug = route.params.slug

// Set canonical URL
useHead({
  link: [{
    rel: 'canonical',
    href: \`https://mysite.com/blog/${slug}\`
  }]
})
</script>
```

## [URL Formatting Rules](#url-formatting-rules)

### [Hyphens Over Underscores](#hyphens-over-underscores)

[Google treats hyphens as word separators](https://developers.google.com/search/docs/crawling-indexing/url-structure). Underscores connect words into single terms.

```
✅ /performance-optimization    → "performance" + "optimization"
❌ /performance_optimization    → "performanceoptimization"
```

**Nuxt file structure:**

```
pages/
  learn-vue-router.vue     ✅ Good
  learn_vue_router.vue     ❌ Bad
```

### [Lowercase Only](#lowercase-only)

URLs are case-sensitive. `/About`, `/about`, and `/ABOUT` are different pages. This creates [duplicate content](https://nuxtseo.com/learn-seo/nuxt/controlling-crawlers/duplicate-content) issues.

```
✅ /about
✅ /products/phones
❌ /About
❌ /products/Phones
```

Use [`kebabCase` from scule](https://github.com/unjs/scule) to generate lowercase slugs automatically.

### [Keep URLs Short](#keep-urls-short)

URLs under 60 characters perform better in search results. Longer URLs get truncated with ellipsis.

**Length comparison:**

| URL | Length | Result |
| --- | --- | --- |
| `/blog/vue-seo` | 14 chars | ✅ Displays fully |
| `/blog/comprehensive-guide-to-vue-seo-optimization` | 50 chars | ⚠️ Works but verbose |
| `/blog/a-comprehensive-guide-to-vue-server-side-rendering-seo-optimization-best-practices` | 98 chars | ❌ Truncated in results |

**When longer URLs make sense:**

```
✅ /docs/getting-started/installation-guide    (clear hierarchy)
✅ /blog/2025/fixing-vue-hydration-mismatch   (date + topic)
❌ /the-ultimate-comprehensive-complete-guide  (keyword stuffing)
```

### [Keywords Near the Start](#keywords-near-the-start)

[Including keywords in URLs provides a lightweight ranking boost](https://developers.google.com/search/docs/crawling-indexing/url-structure). Front-load important terms.

```
✅ /vue-router-seo-guide
✅ /seo/vue-best-practices
❌ /guides-and-tutorials-for-seo-in-vue-router
```

But don't sacrifice readability:

```
pages/
  vue-seo/
    [topic].vue          ✅ Natural keyword placement
  vue-seo-guide-vue-router-seo-tutorial.vue  ❌ Keyword stuffing
```

### [Avoid Dates (Usually)](#avoid-dates-usually)

Dates in URLs prevent content updates. `/blog/2024/vue-guide` becomes outdated when you refresh it in 2025.

```
❌ /blog/2024/vue-router-guide      (looks stale)
❌ /blog/2024/12/17/post-title      (prevents evergreen updates)
✅ /blog/vue-router-guide           (can be updated anytime)
```

**Exception:** Time-sensitive content like news, events, changelogs:

```
pages/
  changelog/
    [year]/
      [month]/
        [slug].vue       → /changelog/2025/12/new-feature
  events/
    2025/
      [slug].vue         → /events/2025/nuxt-conf
  blog/
    [slug].vue           → /blog/vue-router-guide (evergreen)
```

[Removing dates allows republishing old posts](https://developers.google.com/search/blog/2019/03/help-google-search-know-best-date-for) with new content without changing URLs, which is a strong SEO strategy.

## [Path Segments vs Query Parameters](#path-segments-vs-query-parameters)

![Path vs Query Parameter Decision](https://nuxtseo.com/images/learn-seo/vue/path-vs-query-decision.svg)

Search engines prefer path segments over query parameters. [Path segments are indexed and ranked](https://www.searchenginejournal.com/technical-seo/url-parameter-handling/). Query parameters often cause duplicate content.

**Comparison:**

| Type | Example | SEO Impact |
| --- | --- | --- |
| Path segments | `/products/phones/iphone-15` | ✅ Clean, indexed, ranks well |
| Query parameters | `/products?category=phones&id=15` | ⚠️ Duplicate content risk |
| Mixed | `/products/phones?sort=price` | ✅ Path for content, query for filters |

**Problems with query parameters:**

```
/products
/products?sort=price
/products?sort=date
/products?page=2
/products?sort=price&page=2
```

Five URLs, same content. Google sees [duplicate content and wastes crawl budget](https://www.seozoom.com/a-guide-to-query-strings-url-parameters-for-the-seo/). See [Query Parameters](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering/query-parameters) for handling strategies.

### [Nuxt Dynamic Routes](#nuxt-dynamic-routes)

Use dynamic segments for content that should be indexed:

```
pages/
  products/
    [category]/
      [slug].vue        → /products/phones/iphone-15
  blog/
    [year]/
      [month]/
        [slug].vue      → /blog/2025/12/nuxt-seo-guide
  docs/
    [section]/
      [page].vue        → /docs/getting-started/installation
```

### [Query Parameters for Filters](#query-parameters-for-filters)

Use query parameters for sorting, filtering, and pagination. Set canonical URLs to consolidate these variations. See the [Query Parameters guide](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering/query-parameters) for implementation details including canonical composables and parameter ordering.

## [Dynamic Routes](#dynamic-routes)

Nuxt's file-based routing creates SEO-friendly URLs automatically. Use descriptive slugs rather than database IDs - `/products/laptop-pro-15` ranks better than `/products/84792`.

### [Basic Dynamic Segments](#basic-dynamic-segments)

```
pages/
  blog/
    [slug].vue          → /blog/:slug
```

pages/blog/[slug].vue

```
<script setup lang="ts">
const route = useRoute()
const slug = route.params.slug

// Fetch content based on slug
const { data: post } = await useFetch(\`/api/posts/${slug}\`)

// Set meta tags
useSeoMeta({
  title: post.value.title,
  description: post.value.excerpt,
  ogUrl: \`https://mysite.com/blog/${slug}\`
})

useHead({
  link: [{
    rel: 'canonical',
    href: \`https://mysite.com/blog/${slug}\`
  }]
})
</script>
```

### [Nested Dynamic Routes](#nested-dynamic-routes)

```
pages/
  products/
    [category]/
      [slug].vue        → /products/:category/:slug
```

Generates hierarchical URLs:

- `/products/electronics/laptop`
- `/products/clothing/jacket`

pages/products/[category]/[slug].vue

```
<script setup lang="ts">
const route = useRoute()
const category = route.params.category
const slug = route.params.slug

const { data: product } = await useFetch(
  \`/api/products/${category}/${slug}\`
)

useSeoMeta({
  title: \`${product.value.name} - ${category}\`,
  description: product.value.description
})
</script>
```

### [Catch-All Routes](#catch-all-routes)

```
pages/
  search/
    [...params].vue     → /search/:params*
```

Matches:

- `/search/vue-router`
- `/search/vue-router/recent`
- `/search/vue-router/recent/2025`

**Important:** Catch-all routes create multiple URLs for similar content. Use canonical tags:

pages/search/[...params].vue

```
<script setup lang="ts">
const route = useRoute()
const query = Array.isArray(route.params.params)
  ? route.params.params[0]
  : route.params.params

useHead({
  link: [{
    rel: 'canonical',
    href: \`https://mysite.com/search/${query}\`
  }]
})
</script>
```

## [Slug Generation](#slug-generation)

Use [`kebabCase` from scule](https://github.com/unjs/scule) (already a Nuxt dependency):

```
import { kebabCase } from 'scule'

kebabCase('Vue Router Guide') // "vue-router-guide"
kebabCase('50% Off Sale!') // "50-off-sale"
```

For international content, [Google supports UTF-8 URLs](https://developers.google.com/search/docs/crawling-indexing/url-structure) but they must be percent-encoded when sent over HTTP. Consider whether your audience expects localized slugs or ASCII-only.

## [URL Hierarchy and Internal Linking](#url-hierarchy-and-internal-linking)

URL structure defines your site's hierarchy, and that hierarchy directly affects how [internal links](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering/internal-linking) distribute authority. Flat structures (fewer path segments) make pages easier to crawl and link to. Deep nesting (4+ levels) signals low importance to Google.

| Structure | Crawl Depth | SEO Impact |
| --- | --- | --- |
| `/features/color-extraction` | 2 levels | Good, easy to reach |
| `/docs/v2/api/reference/methods/extract` | 6 levels | Poor, buried content |

Keep important pages within 3 clicks of the homepage. Use hub pages (like `/features`) that link to all child pages, creating a clear topic cluster.

### [Programmatic SEO URLs](#programmatic-seo-urls)

When generating pages at scale ([programmatic SEO](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering/programmatic-seo)), use URL patterns that include target keywords:

```
pages/
  compare/
    [slug].vue            → /compare/pocketui-vs-css-peeper
  alternatives/
    [slug].vue            → /alternatives/colorzilla
  features/
    [slug].vue            → /features/color-extraction
```

Each pattern targets a different keyword cluster. The keyword in the URL itself is a [lightweight ranking signal](https://developers.google.com/search/docs/crawling-indexing/url-structure). Keep slugs descriptive: `/compare/pocketui-vs-css-peeper` rather than `/compare/1`.

## [Testing URL Structure](#testing-url-structure)

**View in search results:**

```
# Test how Google displays your URLs
site:yoursite.com "vue router"
```

**Check canonicalization:**

Use [Google Search Console URL Inspection](https://search.google.com/search-console) to verify:

- User-declared canonical matches your intent
- Google-selected canonical agrees with your preference
- No conflicting signals from redirects or alternates

[The 2026 SEO Checklist for Nuxt & Vue Pre-launch setup, post-launch verification, and ongoing monitoring. Interactive checklist with links to every guide.](https://nuxtseo.com/learn-seo/checklist) [Haven't launched yet? Start with the Pre-Launch Warmup](https://nuxtseo.com/learn-seo/pre-launch-warmup)

---

[Routes & Rendering URL patterns, rendering modes, and routing decisions that affect your Nuxt site's search rankings.](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering) [Pagination How to implement SEO-friendly pagination in Nuxt using canonical tags, self-referencing URLs, and proper link structure.](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering/pagination)

On this page

- [Quick Setup](#quick-setup)
- [URL Formatting Rules](#url-formatting-rules)
- [Path Segments vs Query Parameters](#path-segments-vs-query-parameters)
- [Dynamic Routes](#dynamic-routes)
- [Slug Generation](#slug-generation)
- [URL Hierarchy and Internal Linking](#url-hierarchy-and-internal-linking)
- [Testing URL Structure](#testing-url-structure)

[GitHub](https://github.com/harlan-zw/nuxt-seo) [ Discord](https://discord.com/invite/275MBUBvgP)

### [NuxtSEO](https://nuxtseo.com/ "Home")

- [Getting Started](https://nuxtseo.com/docs/nuxt-seo/getting-started/introduction)
- [MCP](https://nuxtseo.com/docs/nuxt-seo/guides/mcp)

Modules

- [Robots](https://nuxtseo.com/docs/robots/getting-started/introduction)
- [Sitemap](https://nuxtseo.com/docs/sitemap/getting-started/introduction)
- [OG Image](https://nuxtseo.com/docs/og-image/getting-started/introduction)
- [Schema.org](https://nuxtseo.com/docs/schema-org/getting-started/introduction)
- [Link Checker](https://nuxtseo.com/docs/link-checker/getting-started/introduction)
- [SEO Utils](https://nuxtseo.com/docs/seo-utils/getting-started/introduction)
- [Site Config](https://nuxtseo.com/docs/site-config/getting-started/introduction)
- [Skew Protection](https://nuxtseo.com/docs/skew-protection/getting-started/introduction)
- [AI Ready](https://nuxtseo.com/docs/ai-ready/getting-started/introduction)

### [NuxtSEO Pro](https://nuxtseo.com/pro "Home")

- [Getting Started](https://nuxtseo.com/pro)
- [Dashboard](https://nuxtseo.com/pro/dashboard)
- [Pro MCP](https://nuxtseo.com/docs/nuxt-seo-pro/mcp/installation)

### [Learn SEO](https://nuxtseo.com/learn-seo "Learn SEO")

Nuxt

- [Mastering Meta](https://nuxtseo.com/learn-seo/nuxt/mastering-meta)
- [Controlling Crawlers](https://nuxtseo.com/learn-seo/nuxt/controlling-crawlers)
- [Launch & Listen](https://nuxtseo.com/learn-seo/nuxt/launch-and-listen)
- [Routes & Rendering](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering)
- [Staying Secure](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering/security)

Vue

- [Vue SEO Guide](https://nuxtseo.com/learn-seo/vue)
- [Mastering Meta](https://nuxtseo.com/learn-seo/vue/mastering-meta)
- [Controlling Crawlers](https://nuxtseo.com/learn-seo/vue/controlling-crawlers)
- [SPA SEO](https://nuxtseo.com/learn-seo/vue/spa)
- [SSR Frameworks](https://nuxtseo.com/learn-seo/vue/ssr-frameworks)
- [SEO Checklist](https://nuxtseo.com/learn-seo/checklist)
- [Pre-Launch Warmup](https://nuxtseo.com/learn-seo/pre-launch-warmup)
- [Backlinks & Authority](https://nuxtseo.com/learn-seo/backlinks)

### [Tools](https://nuxtseo.com/tools "SEO Tools")

- [Social Share Debugger](https://nuxtseo.com/tools/social-share-debugger)
- [Robots.txt Generator](https://nuxtseo.com/tools/robots-txt-generator)
- [Meta Tag Checker](https://nuxtseo.com/tools/meta-tag-checker)
- [HTML to Markdown](https://nuxtseo.com/tools/html-to-markdown)
- [XML Sitemap Validator](https://nuxtseo.com/tools/xml-sitemap-validator)
- [Schema.org Validator](https://nuxtseo.com/tools/schema-validator)
- [Keyword Idea Generator](https://nuxtseo.com/tools/keyword-generator)
- [Keyword Research](https://nuxtseo.com/tools/keyword-research)
- [SERP Analyzer](https://nuxtseo.com/tools/serp-analyzer)
- [Domain Rankings](https://nuxtseo.com/tools/domain-rankings)

Copyright © 2023-2026 Harlan Wilton - [MIT License](https://github.com/harlan-zw/nuxt-seo/blob/main/license) · [mdream](https://mdream.dev)