> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: redirect(url: string, statusCode: string) # Method package: wixRouter # Method menu location: wixRouter --> redirect # Method Link: https://dev.wix.com/docs/velo/events-service-plugins/routers/service-plugins/wix-router/redirect.md # Method Description: Returns a response with a status code of 301 (Moved Permanently) or 302 (Found) and instructs the router to redirect to the given URL. The `redirect()` function is used in the [`router()`](#router), [`beforeRouter()`](#beforeRouter), and [`afterRouter()`](#afterRouter) hooks to redirect to a page that is not the requested page. Optionally, you can pass a status code of `"301"` or `"302"` using the `statusCode` parameter. If any other status code is passed or no status code is passed at all, the status code defaults to `"302"`. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Create a redirect response ```javascript import {redirect} from 'wix-router'; export function myRouter_Router(request) { return redirect("http://myothersite.com"); } ``` ## Create a redirect response with HTTP code 301 ```javascript import {redirect} from 'wix-router'; export function myRouter_Router(request) { return redirect("http://myothersite.com", "301"); } ``` ---