1//PHP redirect
2header("Location: https://www.codegrepper.com/my-redirect-page.php");
3die();
4
1<?php
2/*
3 This will redirect to facebook.com
4*/
5$url = "https://facebook.com.com";
6header("Location: $url");
7exit;
8?>
1header("Location: http://example.com/redirect_page.php");
2die(); //Force the script to quit, or you would raise an error...
1//Write this in the Controller when working on Laravel.
2
3header('Location: http://www.example.com/');
4exit;
5