Skip to content

Instantly share code, notes, and snippets.

@jbd91
Created February 7, 2018 22:43
Show Gist options
  • Select an option

  • Save jbd91/898fd0b7fde9b2dee7c22c6e8fda9f3b to your computer and use it in GitHub Desktop.

Select an option

Save jbd91/898fd0b7fde9b2dee7c22c6e8fda9f3b to your computer and use it in GitHub Desktop.
WP Config Redirect
// Redirect non-existant single post page to primary listing page
if (preg_match('/^\/blog\/technician/', $_SERVER['REQUEST_URI'])) {
header('HTTP/1.0 301 Moved Permanently');
header('Location: /technician-locator');
exit();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment