Add the following information at the end of the /usr/local/apache/conf/httpd.conf file:
1 #add chinese url code 2 LoadModule encoding_module /usr/local/apache/modules/mod_encoding.so 3 <IfModule mod_headers.c> 4 Header add MS-Author-Via "DAV" 5 </IfModule> 6 7 <IfModule mod_encoding.c> 8 EncodingEngine on 9 NormalizeUsername on10 SetServerEncoding GBK11 DefaultClientEncoding UTF-8 GBK GB231212 AddClientEncoding "(Microsoft .* DAV $)" UTF-8 GBK GB231213 AddClientEncoding "Microsoft .* DAV" UTF-8 GBK GB231214 AddClientEncoding "Microsoft-WebDAV*" UTF-8 GBK GB231215 </IfModule>
The above is the detailed content of Analyze how to set URL to access Chinese encoding under Apache server. For more information, please follow other related articles on the PHP Chinese website!