How to add 301 redirects in PHP?

by heather_fritsch , in category: Technology , 4 years ago

How to add 301 redirects in PHP?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by aaliyah , 4 years ago

You can add 301 redirect in PHP by adding below code snippet in your file.


1
2
3
header("HTTP/1.1 301 Moved Permanently"); 
header("Location: /option-a"); 
exit(); 

Related Threads:

How to do 301 redirects in CodeIgniter?
What is difference Between PHP 5 and 7?
How to Create a Composer Package in 2025?
How to Add SVG in HTML?
How to add maxLength on ion-input?
What Are the Best Practices for Sql Server Security?