[wpmu-trac] [WordPress MU Trac] #1105: Wordpress MU redirection on path-based install
WordPress MU Trac
wpmu-trac at lists.automattic.com
Wed Sep 2 06:23:16 UTC 2009
#1105: Wordpress MU redirection on path-based install
-----------------------+----------------------------------------------------
Reporter: antialias | Owner: somebody
Type: defect | Status: new
Priority: normal | Milestone:
Component: General | Version:
Severity: normal | Keywords: needs-testing
-----------------------+----------------------------------------------------
tested on version 2.8.4a (not available in the Version menu)
example:
I have a fresh WPMU instance set up to work with paths. Base install
location is set to
http://example.com/
I have a blog set up on http://example.com/site/ and a post that is
accessible at
http://example.com/site/blog/2009/09/01/hello-world/
If I add a www. into this path, like this:
http://www.example.com/site/blog/2009/09/01/hello-world/
WPMU will redirect to
http://example.com/site/
Expected behavior is to redirect to
http://example.com/site/blog/2009/09/01/hello-world/
The fix is a one-liner: line 167 in wpmu-settings:
{{{ header( "Location: http://" . $current_site->domain .
$current_site->path ); }}}
change to:
{{{ header( "Location: http://" . $current_site->domain .
$_SERVER['REQUEST_URI'] ); }}}
The patch is attached.
--
Ticket URL: <http://trac.mu.wordpress.org/ticket/1105>
WordPress MU Trac <http://mu.wordpress.org/>
WordPress Multiuser
More information about the wpmu-trac
mailing list