redirect to other website php code example

Example 1: how to redirect with php

<?php
  header("Location: (redirect url)");
?>

Example 2: php redirect

header("Location: http://example.com");
die();

Example 3: redirect to site php

//Write this in the Controller when working on Laravel.

header('Location: http://www.example.com/');
exit;

Example 4: How do I make a redirect in PHP?

header("Location: http://example.com/redirect_page.php");
die(); //Force the script to quit, or you would raise an error...

Tags:

Php Example