The php url contains Chinese characters. The Error 404 is displayed,

Source: Internet
Author: User

The php url contains Chinese characters. The Error 404 is displayed,

You can use Microsoft Web Platform to configure and install a wordpress in IIS.

When an article is added, the automatically generated URL is similar to the following:

Http: // localhost/wordpress/index. php/2017/06/28/dc % e8 % b6 % 85% e8 % 83% bd % e5 % a6 % b9 % e5 % ad % 90% ef % bc % 9a % e6 % 98% 9f % e9 % 99% 85% e6 % b8 % b8 % e6 % 88% 8f-2017/

Click the 404 prompt. After query, the following solution is found:

Locate the "class-wp.php" file under the "wp-include" directory.
Step 1: Find
$ Pathinfo = $ _ SERVER ['path _ info'];
To:
$ Pathinfo = mb_convert_encoding ($ _ SERVER ['path _ info'], 'utf-8', 'gbk ');
Step 2: Find
$ Req_uri = $ _ SERVER ['request _ URI '];
To:
$ Req_uri = mb_convert_encoding ($ _ SERVER ['request _ URI '], 'utf-8', 'gbk ');

 

Open the above connection again, perfect ~

Refer:

Https://www.douban.com/note/241751746/

Http://www.cnblogs.com/xishuai/p/3590187.html

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.