For some reason my configure button wanted to link me to :
http://www.mydomain.com/?q=http://sub.mydomain.com/?q=...
I had to comment out the following on the module to make this work:
/*if ($type == 'alias') {
if (($protocol . $_SERVER['HTTP_HOST'] != $base) && !is_null($base) && (strpos($path, '://') === FALSE)) {
$path = $base .'/'. (!$clean_url ? '?q=' : '') . $path;
}
}
else {
// Permanent redirect on old pages.
#if ($protocol . $_SERVER['HTTP_HOST'] != $base) {
# header("HTTP/1.1 301 Moved Permanently");
# header("Location: " . $base .'/'. (!$clean_url ? '?q=' : '') . $path;);
# exit();
#}
}*/
Its fine for me... works perfectly... just FYI
Comments
Comment #1
jheiv commentedSorry, I didn't apply the patch -- and for everyone's reference -- that isn't a working work-around ;-)