Member
heather_fritsch
How to add 301 redirects in PHP?
aaliyah
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();