Mine
public php v1 · immutable<?php/*Plugin Name: Super Simple Page-to-Forum RedirecterPlugin URI: #Description: Made custom for Mystalic!Author: Trevor FitzgeraldVersion: 0.1Author URI: http://www.trevorfitzgerald.com/*//* * Replace 'Forum' with the name of the page, the page slug, or the page's # id. */function redirect_to_forum() { if ( is_page('Forum') ) wp_redirect('http://wordpress.org/support/');}add_action('get_header', 'redirect_to_forum');?>