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
RewriteRule ^(.*)-htm-(.*)$ $1.php?$2
Copy the code
and modify it to:
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
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