这是我人在使用Magento站点debug Sitemap错误的问题时碰到的一个问题,该站点的代码完全正常,把生成的xml文件直接var_dump出来,并且放到本地,完全无错。通过FTP下载到本地也能够打开。唯独通过http直接访问并下载sitemap文件打开显示乱码。
经过一天一夜的排查附上这苦逼的两行。通过”SetEnvIfNoCase Request_URI .gz$ no-gzip dont-vary”来排除任意不想压缩传输的文件。
-
- ############################################
- ## enable apache served files compression
- ## http://www.111cn.net
- # Insert filter on all content
- SetOutputFilter DEFLATE
- # Insert filter on selected content types only
- AddOutputFilterByType DEFLATE text/html text/plain text/css text/javascript
-
- # Netscape 4.x has some problems...
- BrowserMatch ^Mozilla/4 gzip-only-text/html
-
- # Netscape 4.06-4.08 have some more problems
- BrowserMatch ^Mozilla/4.0[678] no-gzip
-
- # MSIE masquerades as Netscape, but it is fine
- BrowserMatch bMSIE !no-gzip !gzip-only-text/html
-
- # Don't compress images
- SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary
- SetEnvIfNoCase Request_URI .xml$ no-gzip dont-vary
- SetEnvIfNoCase Request_URI .gz$ no-gzip dont-vary
-
- # Make sure proxies don't deliver the wrong content
- Header append Vary User-Agent env=!dont-vary
-
解决中文乱码二:apache Web中文显示乱码
(1)在每一个网页里增加
- "Content-Language" content="zh-cn">
- "Content-Type" content="text/html; charset=GB2312">
并在APACHE的httpd.conf设置文件中将
- AddDefaultCharset ISO-8859-1
改为
- AddDefaultCharset off
(2)直接在httpd.conf设置文件中将AddDefaultCharset ISO-8859-1 改为如下代码:
- AddDefaultCharset GB2312 .ZH-CN .zh-cn
上述两种方法都能解决apache Web服务器网页显示乱码的问题
|