Strip trailing /index.php in Canonical, fixes #5017. fixes #7173.

git-svn-id: https://develop.svn.wordpress.org/trunk@9203 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2008-10-16 19:17:04 +00:00
parent d806f2e97d
commit 6f68542aef
1 changed files with 6 additions and 3 deletions

View File

@ -54,7 +54,10 @@ function redirect_canonical($requested_url=null, $do_redirect=true) {
return;
// Some PHP setups turn requests for / into /index.php in REQUEST_URI
$original['path'] = preg_replace('|/index\.php$|', '/', $original['path']);
// See: http://trac.wordpress.org/ticket/5017
// See: http://trac.wordpress.org/ticket/7173
// Disabled, for now:
// $original['path'] = preg_replace('|/index\.php$|', '/', $original['path']);
$redirect = $original;
$redirect_url = false;
@ -177,8 +180,8 @@ function redirect_canonical($requested_url=null, $do_redirect=true) {
else
unset($redirect['port']);
// trailing /index.php/
$redirect['path'] = preg_replace('|/index.php/$|', '/', $redirect['path']);
// trailing /index.php
$redirect['path'] = preg_replace('|/index.php/*?$|', '/', $redirect['path']);
// Remove trailing spaces from the path
$redirect['path'] = preg_replace( '#(%20| )+$#', '', $redirect['path'] );