WordPress pseudo static Chinese tag tag cannot be faulted

Source: Internet
Author: User
Tags explode

The specific steps are as follows:
Modify the following code in the site/wp-includes/class-wp.php

The code is as follows Copy Code

if (Isset ($_server[' path_info '))

$pathinfo = $_server[' path_info '];

Else

$pathinfo = ';

$pathinfo _array = Explode ('? ', $pathinfo);

$pathinfo = str_replace ("%", "%25", $pathinfo _array[0]);

$req _uri = $_server[' Request_uri '];

Amended to

The code is as follows Copy Code

if (Isset ($_server[' path_info '))

$pathinfo = mb_convert_encoding ($_server[' path_info '), ' utf-8 ', ' GBK ');

Else

$pathinfo = ";

$pathinfo _array = Explode ('? ', $pathinfo);

$pathinfo = str_replace ("%", "%25", $pathinfo _array[0]);

$req _uri = mb_convert_encoding ($_server[' Request_uri '), ' utf-8 ', ' GBK ');

Can

In fact, we concluded that

The code is as follows Copy Code

Find: $pathinfo = $_server[' path_info '];
Modified as: $pathinfo = mb_convert_encoding ($_server[' path_info '), "Utf-8″, GBK");
Find again: $req _uri = $_server[' Request_uri '];
Modified as: $req _uri = mb_convert_encoding ($_server[' Request_uri '), "Utf-8″", "GBK");

can be done.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.