Guard::kick()
Redirect current page to a different page.
Guard::kick(void);
Guard::kick(string $path);
Guard::kick(string $path, int $status = 301);
Example:
// Redirect to `https://mecha-cms.com/reference/class/guard/kick/foo/bar`
Guard::kick('foo/bar');
// Redirect to `https://mecha-cms.com/foo/bar`
Guard::kick('/foo/bar');
// Redirect to `http://example.com`
Guard::kick('http://example.com');