Home > Backend Development > PHP Tutorial > What should I do if destoon searches for Chinese characters with garbled characters? Solution

What should I do if destoon searches for Chinese characters with garbled characters? Solution

WBOY
Release: 2016-07-25 08:53:12
Original
1209 people have browsed it
  1. RewriteRule ^(.*)-htm-(.*)$ $1.php?$2
Copy the code

and modify it to:

  1. RewriteRule ^(.*)-htm-(.*)$ $1.php?$2 [NU]
Copy code

Convert from Unicode to UTF if NU flag is set – 8 will will not happen. All Unicode characters will keep their %xx format unchanged, and the problem is solved.

Recommended reading: destoon introductory tutorials and skill examples


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template