topical media & game development

talk show tell print

professional-search-16-Digg-Plugins-blog301fix.php / php



  <?php
  
  /*
  Plugin Name: Blog301Fix
  Plugin URI: http://www.seoegghead.com/
  Description: Redirects /blog to /.
  Author: Jaimie Sirovich
  Version: 1.0
  Author URI: http://www.seoegghead.com/
  */ 
  
  if (_SERVER['REQUEST_URI'] == '/blog/') {
    header("HTTP/1.1 301 Moved Permanently");
    header('Location: ' . preg_replace('#blog#', '', get_bloginfo('url'), 1)); 
    exit();
  }
  
  ?>
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.