Created
September 28, 2012 06:17
-
-
Save anointed/3798215 to your computer and use it in GitHub Desktop.
Admin wildcard redirect
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
<?php | |
/* | |
Plugin Name: Average CMS Wildcard Admin Redirect | |
Plugin URI: https://github.com/cramerdev/acms-wildcard-admin-redirect | |
Description: Redirects the admin pages for a mapped domain to the non-mapped version of the domain. This is required because when FORCE_SSL_ADMIN is enabled, by default the redirect will go the the https version of the URL you're on. If you're using domain mapping, that domain might not have a valid SSL certificate. This plugin redirects to the original, non-mapped domain instead. This plugin MUST be loaded AFTER the wordpress-mu-domain-mapping plugin. One way to do this is to rename this file prefixed with a z_ or something. | |
Version: 0.0.2 | |
Author: Nathan L Smith | |
*/ | |
if (FORCE_SSL_ADMIN && function_exists('get_original_url')) { | |
function acms_wildcard_admin_redirect($location, $status = 302) { | |
$url = parse_url($location); | |
if ($url['scheme'] === 'https' && | |
(preg_match("/\/wp-[login|admin|register]/", $url['path']) > 0)) { | |
$orig = parse_url(get_original_url($url['host'])); | |
if ($orig['host'] && $orig['host'] !== $url['host']) { | |
$location = 'https://'.$orig['host'].$url['path']; | |
} | |
} | |
return $location; | |
} | |
add_filter('wp_redirect', 'acms_wildcard_admin_redirect'); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment