There are times when you may want to redirect a webpage to a particular URL permanently, this is called a 301 redirect in HTTP request/response protocol. It is also a very important part of SEO (Search Engine Optimization) that your redirect is correct. 301 redirects are called as Search Engine Friendly redirects. When the bots/crawlers read the URL they know that the page has been permanently moved to a new location. Let's see a code snippet for the same,
PHP 301 Redirect Code :<?php
//set the 301 header
header("HTTP/1.1 301 Moved Permanently");
//Set the url location to the redirected page
header("Location: http://redirected-page-url.com");
?>
Note: If you remove the first header line the page will be redirected to the specified new location but it would be a 302 Moved Temporarily kind of redirect and not 301.
<?php
//This will result to 302 : Moved Temporarily redirect (should be avoided)
header("Location: http://redirected-page-url.com");
?>
If you read Google's Webmaster Guidelines you would see that they recommend using 301 redirects instead of 302.
"If you need to change the URL of a page as it is shown in search engine results, we recommend that you use a server-side 301 redirect. This is the best way to ensure that users and search engines are directed to the correct page. The 301 status code means that a page has permanently moved to a new location."
- https://support.google.com/webmasters/answer/93633?hl=en
- PHP drag and drop file upload tutorial using dropzone.js
- Copy file from one directory to other in Php
- PHP Base64 encoding decoding a variable
- macOS - cannot calculate MAC address: Using fd 9 hv_vm_create HV_ERROR [PHP XAMPP]
- Upload Pdf file using PHP Script
- Call PHP function on Button click using jquery ajax
- PHP Code for sending Emails
- PHP header location function not called
- Delete file using PHP code : unlink()
- PHP Warning: Cannot modify header information - headers already sent
- Failed to load resource: net::ERR_CACHE_MISS PHP
- Upload docx file using PHP script
- PHP 301 Redirect Permanently
- PHP Script to Upload Images to Server
- Installing vue.js in Laravel 8
- Remove URL Forward Slash Before Single or Double quotes in php.ini
- How to destroy PHP session()
- PHP Fatal error : Call to a member function bind_param() on a non-object
- 403 forbidden error for Image
- [Solved] Bootstrap tooltip not working - Bootstrap
- How to pip install Python Modules in VSCode - Python
- How to pass value to another Power Apps screen - PowerApps
- Create Nested Directories using Java Code - Java
- List of All 35 Reserved Keywords in Python Programming Language 3.11 - Python
- Your Android SDK is out of date or is missing templates. Please ensure you are using SDK version 22 or later. - Android
- How to change bash terminal prompt string and color - Linux
- Convert JSON to Java Collection Map using Jackson - Java