Making WordPress.org


Ignore:
Timestamp:
05/04/2020 02:23:37 AM (6 years ago)
Author:
dd32
Message:

Theme Directory: Don't trailing slash .xml files (Sitemaps).

See #5022.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/functions.php

    r9761 r9818  
    8787
    8888        // Ensure all requests are trailingslash'd.
    89         if ( $path && '/' !== substr( $path, -1 ) ) {
     89        if ( $path && '/' !== substr( $path, -1 ) && '.xml' !== substr( $path, -4 ) ) {
    9090                $url = str_replace( $path, $path . '/', $_SERVER['REQUEST_URI'] );
    9191                wp_safe_redirect( $url, 301 );
Note: See TracChangeset for help on using the changeset viewer.