diff --git a/src/content/docs/en/reference/errors/get-static-paths-invalid-route-param.mdx b/src/content/docs/en/reference/errors/get-static-paths-invalid-route-param.mdx index aa89544bc2d86..bd51232351ec2 100644 --- a/src/content/docs/en/reference/errors/get-static-paths-invalid-route-param.mdx +++ b/src/content/docs/en/reference/errors/get-static-paths-invalid-route-param.mdx @@ -30,7 +30,7 @@ export async function getStaticPaths() { --- ``` -In routes using [rest parameters](/en/guides/routing/#rest-parameters), `undefined` can be used to represent a path with no parameters passed in the URL: +In routes using [rest parameters](/en/core-concepts/routing/#rest-parameters), `undefined` can be used to represent a path with no parameters passed in the URL: ```astro title="/route/[...id].astro" --- diff --git a/src/content/docs/en/reference/errors/get-static-paths-required.mdx b/src/content/docs/en/reference/errors/get-static-paths-required.mdx index c68ff9fd7835a..3f20c699c3fc1 100644 --- a/src/content/docs/en/reference/errors/get-static-paths-required.mdx +++ b/src/content/docs/en/reference/errors/get-static-paths-required.mdx @@ -16,10 +16,10 @@ import DontEditWarning from '~/components/DontEditWarning.astro' > **GetStaticPathsRequired**: `getStaticPaths()` function is required for dynamic routes. Make sure that you `export` a `getStaticPaths` function from your dynamic route. ## What went wrong? -In [Static Mode](/en/guides/routing/#static-ssg-mode), all routes must be determined at build time. As such, dynamic routes must `export` a `getStaticPaths` function returning the different paths to generate. +In [Static Mode](/en/core-concepts/routing/#static-ssg-mode), all routes must be determined at build time. As such, dynamic routes must `export` a `getStaticPaths` function returning the different paths to generate. **See Also:** -- [Dynamic Routes](/en/guides/routing/#dynamic-routes) +- [Dynamic Routes](/en/core-concepts/routing/#dynamic-routes) - [`getStaticPaths()`](/en/reference/api-reference/#getstaticpaths) - [Server-side Rendering](/en/guides/server-side-rendering/) diff --git a/src/content/docs/en/reference/errors/invalid-dynamic-route.mdx b/src/content/docs/en/reference/errors/invalid-dynamic-route.mdx index 268d21f8084f3..623baead04ddb 100644 --- a/src/content/docs/en/reference/errors/invalid-dynamic-route.mdx +++ b/src/content/docs/en/reference/errors/invalid-dynamic-route.mdx @@ -16,9 +16,9 @@ import DontEditWarning from '~/components/DontEditWarning.astro' > **InvalidDynamicRoute**: The INVALID_PARAM param for route ROUTE is invalid. Received **RECEIVED**. ## What went wrong? -A dynamic route param is invalid. This is often caused by an `undefined` parameter or a missing [rest parameter](/en/guides/routing/#rest-parameters). +A dynamic route param is invalid. This is often caused by an `undefined` parameter or a missing [rest parameter](/en/core-concepts/routing/#rest-parameters). **See Also:** -- [Dynamic routes](/en/guides/routing/#dynamic-routes) +- [Dynamic routes](/en/core-concepts/routing/#dynamic-routes) diff --git a/src/content/docs/en/reference/errors/no-client-entrypoint.mdx b/src/content/docs/en/reference/errors/no-client-entrypoint.mdx index 743f532ff95b1..9404664e6cd5a 100644 --- a/src/content/docs/en/reference/errors/no-client-entrypoint.mdx +++ b/src/content/docs/en/reference/errors/no-client-entrypoint.mdx @@ -20,6 +20,6 @@ Astro tried to hydrate a component on the client, but the renderer used does not **See Also:** - [addRenderer option](/en/reference/integrations-reference/#addrenderer-option) -- [Hydrating framework components](/en/guides/framework-components/#hydrating-interactive-components) +- [Hydrating framework components](/en/core-concepts/framework-components/#hydrating-interactive-components) diff --git a/src/content/docs/en/reference/errors/no-matching-renderer.mdx b/src/content/docs/en/reference/errors/no-matching-renderer.mdx index 2faee896d767b..a17dc97518098 100644 --- a/src/content/docs/en/reference/errors/no-matching-renderer.mdx +++ b/src/content/docs/en/reference/errors/no-matching-renderer.mdx @@ -21,7 +21,7 @@ None of the installed integrations were able to render the component you importe For JSX / TSX files, [@astrojs/react](/en/guides/integrations-guide/react/), [@astrojs/preact](/en/guides/integrations-guide/preact/) or [@astrojs/solid-js](/en/guides/integrations-guide/solid-js/) can be used. For Vue and Svelte files, the [@astrojs/vue](/en/guides/integrations-guide/vue/) and [@astrojs/svelte](/en/guides/integrations-guide/svelte/) integrations can be used respectively **See Also:** -- [Frameworks components](/en/guides/framework-components/) +- [Frameworks components](/en/core-concepts/framework-components/) - [UI Frameworks](/en/guides/integrations-guide/#official-integrations) diff --git a/src/content/docs/en/reference/errors/no-matching-static-path-found.mdx b/src/content/docs/en/reference/errors/no-matching-static-path-found.mdx index 30ce9f201a9bf..db610cf1be173 100644 --- a/src/content/docs/en/reference/errors/no-matching-static-path-found.mdx +++ b/src/content/docs/en/reference/errors/no-matching-static-path-found.mdx @@ -16,7 +16,7 @@ import DontEditWarning from '~/components/DontEditWarning.astro' > **NoMatchingStaticPathFound**: A `getStaticPaths()` route pattern was matched, but no matching static path was found for requested path `PATH_NAME`. ## What went wrong? -A [dynamic route](/en/guides/routing/#dynamic-routes) was matched, but no corresponding path was found for the requested parameters. This is often caused by a typo in either the generated or the requested path. +A [dynamic route](/en/core-concepts/routing/#dynamic-routes) was matched, but no corresponding path was found for the requested parameters. This is often caused by a typo in either the generated or the requested path. **See Also:** - [getStaticPaths()](/en/reference/api-reference/#getstaticpaths) diff --git a/src/content/docs/en/reference/errors/page-number-param-not-found.mdx b/src/content/docs/en/reference/errors/page-number-param-not-found.mdx index c017ee70532c3..7916cd9f3b857 100644 --- a/src/content/docs/en/reference/errors/page-number-param-not-found.mdx +++ b/src/content/docs/en/reference/errors/page-number-param-not-found.mdx @@ -19,6 +19,6 @@ import DontEditWarning from '~/components/DontEditWarning.astro' The page number parameter was not found in your filepath. **See Also:** -- [Pagination](/en/guides/routing/#pagination) +- [Pagination](/en/core-concepts/routing/#pagination) diff --git a/src/content/docs/en/reference/errors/reserved-slot-name.mdx b/src/content/docs/en/reference/errors/reserved-slot-name.mdx index 6fc04ac749c68..f9e4ce9390004 100644 --- a/src/content/docs/en/reference/errors/reserved-slot-name.mdx +++ b/src/content/docs/en/reference/errors/reserved-slot-name.mdx @@ -19,6 +19,6 @@ import DontEditWarning from '~/components/DontEditWarning.astro' Certain words cannot be used for slot names due to being already used internally. **See Also:** -- [Named slots](/en/basics/astro-components/#named-slots) +- [Named slots](/en/core-concepts/astro-components/#named-slots)