[wp-trac] [WordPress Trac] #12000: Wordpress MU Needs an option to formally allow enabling www for TLDs.
WordPress Trac
wp-trac at lists.automattic.com
Mon Jan 25 03:30:03 UTC 2010
#12000: Wordpress MU Needs an option to formally allow enabling www for TLDs.
-------------------------+--------------------------------------------------
Reporter: wpmuguru | Owner:
Type: enhancement | Status: new
Priority: normal | Milestone: Unassigned
Component: Multisite | Version:
Severity: normal | Keywords:
-------------------------+--------------------------------------------------
MU Trac Ticket: http://trac.mu.wordpress.org/ticket/1105
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://core.trac.wordpress.org/ticket/12000>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software
More information about the wp-trac
mailing list