Home  >  Article  >  Backend Development  >  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
WBOYOriginal
2016-07-25 08:53:121193browse
  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


Statement:
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