Fügen Sie am Ende der Datei /usr/local/apache/conf/httpd.conf die folgenden Informationen hinzu:
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>
Das obige ist der detaillierte Inhalt vonAnalysieren Sie, wie Sie eine URL festlegen, um auf die chinesische Kodierung unter dem Apache-Server zuzugreifen. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!