php response redirect code example
Example 1: how to redirect with php
<?php
header("Location: (redirect url)");
?>
Example 2: php redirect
header("Location: http://example.com");
die();
<?php
header("Location: (redirect url)");
?>
header("Location: http://example.com");
die();