In PHP, you can use header function and create 301 redirect.

Here is a sample snippet.

Update:

<?php header('Location: http://example.com', true, 301);  ?>

Code language: PHP (php)

The code below is an older version of this post.

<?php

header("HTTP/1.1 301 Moved Permanently");
header("Location: [http://example.com](http://example.com)");

?>

Code language: PHP (php)

This will redirect the PHP page you have added this into example.com, you can change example.com to any domain you prefer, you can do the same to file with extensions and subdomain.

Thanks to, Christian Häusler for the tip.

Thank you for reading.

I compiled a list of software and services that I use to improve my workflow, here is the link to the list.

Darryl Dias

I’m Darryl. I’m a 3D Artist, Programmer and Linux enthusiast. On this site I share my insights, tips and tricks, tutorials, methods and best practices.