Routing in Svelte
From the Svelte cheat sheet ยท SvelteKit ยท verified Jul 2026
Routing
File-based routing in SvelteKit
javascript
// File structure
src/routes/
+page.svelte // index (/)
+layout.svelte // root layout
about/
+page.svelte // /about
blog/
[slug]/
+page.svelte // /blog/:slug๐ File-based routing with special files
๐ฏ Dynamic routes with [param] syntax
๐ฆ Route groups with (name) for organization
๐ Load functions for data fetching