redirect (tag)

auth_redirect()

Checks if the user is authorized before allowing them on any page of the site.

wp_old_slug_redirect()

The core function that redirects the user from old post links to the current one.

wp_redirect()

Redirects to the specified URL, you can specify the redirect status (301, 302...).

wp_safe_redirect()

Performs a safe redirect, using wp_redirect(). Before redirections check whether the host is in whitelist (in list of allowed hosts).

wp_sanitize_redirect()

Cleans the specified URL so that it can be safely used in redirects.

wp_validate_redirect()

Checks the specified URL for the possibility of using it for redirection.