How to Redirect in PHP?

10 minutes read

A redirect is a technique used in web development to automatically send users from one URL to another. It allows website owners to ensure that visitors are directed to the correct page, even if they enter an incorrect or outdated URL.


There are various types of redirects that can be utilized. Here are some common ones:

  1. 301 Redirect: This is a permanent redirect. It is used when a webpage or content has permanently moved to a new location. Search engines are able to pass on the ranking value from the old URL to the new one, and users are automatically redirected to the new URL.
  2. 302 Redirect: Also known as a temporary redirect, the 302 redirect is used when a webpage or content is temporarily moved to a different location. Search engines may still index the original URL, and users are redirected to the temporary location.
  3. 303 Redirect: Similar to the 302 redirect, the 303 redirect is used for temporary moves. However, it specifically instructs the browser to use a GET method to retrieve the redirected URL.
  4. 307 Redirect: Similar to the 302 redirect, the 307 redirect is also a temporary redirect. It preserves the original HTTP method used when redirecting, such as GET or POST.
  5. Meta Refresh Redirect: This type of redirect is implemented using HTML meta tags in the webpage's header. It instructs the browser to automatically navigate to a different URL after a specified time period.


It is important to choose the appropriate type of redirect based on the purpose and duration of the move. Incorrect usage of redirects can have unintended consequences, such as affecting search engine rankings or causing problems for visitors.

How to redirect in PHP after 5 seconds?

To redirect the page after 5 seconds in PHP, you can use the header function along with the Refresh header. Here's an example:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12

';

// Output the refresh meta tag
echo $refresh_meta_tag;

// Alternatively, you can also use the header function directly without generating the meta tag
// header("Refresh: $delay_seconds; url=$redirect_url");

// Output additional content or a message to be displayed before the redirect
echo 'Redirecting to ' . $redirect_url . ' in ' . $delay_seconds . ' seconds...';
?>


This code snippet will redirect to the specified URL ($redirect_url) after 5 seconds. You can replace 'https://example.com' with the desired URL.

How to redirect after submitting form in PHP?

To redirect after submitting a form in PHP, you can use the header() function to send a raw HTTP header to the browser.


Here is an example of how you can redirect to a specific URL after submitting a form:

1
2



Make sure to replace http://example.com/destination.php with the actual URL you want to redirect to.


It is important to note that header() function should be called before any output to the browser. If you have already sent any output, including HTML tags or whitespace, the redirect will not work.

Best Web Hosting for PHP and MySQL in April 2025

1
DigitalOcean

Rating is 5 out of 5

DigitalOcean

2
AWS

Rating is 4.9 out of 5

AWS

3
Vultr

Rating is 4.8 out of 5

Vultr

4
Cloudways

Rating is 4.7 out of 5

Cloudways

How to redirect without header in PHP?

In PHP, you can achieve a redirect without using the header function by using the meta tag in HTML. Here's an example:

1
2
3
4
5
6
7
8

";
    exit();
}

// Usage
redirect('http://example.com');
?>


In this example, the redirect function is defined to accept a URL as a parameter. It then outputs an HTML meta tag with the http-equiv attribute set to "refresh" and the content attribute set to "0;url=$url", where $url is the provided URL. The 0 indicates that the redirect should happen immediately.


By using this approach, the browser will automatically redirect to the specified URL without the need to modify the headers directly in PHP.

How to redirect page after login in PHP?

You can redirect a page after login in PHP by using the header() function with the location parameter set to the desired URL. Here is an example:

1
2



In this example, the code first checks if the user is already logged in by checking the session variable. If the session variable is set, it means the user is already logged in and is redirected to the "welcome.php" page.


If the login form is submitted, it performs the authentication logic (which you need to implement) and upon successful login, sets the session variable and redirects the user to the "welcome.php" page.


Remember to call the session_start() function at the beginning of the script to start or resume the session.

Best PHP Books to Read in April 2025

1
Murach's PHP and MySQL (4th Edition)

Rating is 5 out of 5

Murach's PHP and MySQL (4th Edition)

2
Learning PHP, MySQL & JavaScript: A Step-by-Step Guide to Creating Dynamic Websites (Learning PHP, MYSQL, Javascript, CSS & HTML5)

Rating is 4.9 out of 5

Learning PHP, MySQL & JavaScript: A Step-by-Step Guide to Creating Dynamic Websites (Learning PHP, MYSQL, Javascript, CSS & HTML5)

3
PHP 8 Objects, Patterns, and Practice: Mastering OO Enhancements, Design Patterns, and Essential Development Tools

Rating is 4.8 out of 5

PHP 8 Objects, Patterns, and Practice: Mastering OO Enhancements, Design Patterns, and Essential Development Tools

4
PHP and MySQL for Dynamic Web Sites: Visual QuickPro Guide

Rating is 4.7 out of 5

PHP and MySQL for Dynamic Web Sites: Visual QuickPro Guide

5
PHP & MySQL: Server-side Web Development

Rating is 4.6 out of 5

PHP & MySQL: Server-side Web Development

6
Programming PHP: Creating Dynamic Web Pages

Rating is 4.5 out of 5

Programming PHP: Creating Dynamic Web Pages

7
PHP for the Web: Visual QuickStart Guide

Rating is 4.4 out of 5

PHP for the Web: Visual QuickStart Guide

Facebook Twitter LinkedIn Telegram Whatsapp

Related Posts:

To redirect to another page within an iframe, you can use the target attribute in the anchor tag. Add a target="_top" attribute to the anchor tag to redirect to the new page outside of the iframe. Alternatively, you can also use JavaScript to redirect ...
Migrating from PHP to Java is a process of porting an existing application written in PHP to Java programming language. While both PHP and Java are popular programming languages for building web applications, migrating from PHP to Java may be necessary due to ...
In this tutorial, we will discuss the process of migrating from PHP to Rust. PHP and Rust are both popular programming languages, but they differ significantly in terms of performance, memory usage, and safety. Migrating from PHP to Rust can result in a more e...