WordPress 404 page redirect to homepage

Open 404.php file from theme in theme editor in WordPress

This code match string from URL and redirect to specific url, this should be the first line in 404.php file.

<?php if(strstr($_SERVER['REQUEST_URI'],"abc")){ header('location:http://typing.soatechnology.net/index.php'); }  get_header();?>


Leave a Reply