Skip to content

301 Moved Permanently

This URL is permanently gone. Here is the new URL. Browsers and search engines will update their links automatically.

Use this when you have permanently changed the URL of a page. This tells Google and other search engines ‘Forget the old URL, rank the new one instead’.

import { HttpCode, get } from 'shokupan';
export const getResource = get('/resource', () => {
return { message: 'Moved Permanently' };
}).pipe(HttpCode(301));