我在压缩sitemap.xml.gz时遇到问题。我使用这段代码:
// Name of the file we're compressing
$file = '/path/'.'sitemap-'.$i.'.xml';
// Name of the gz file we're creating
$gzfile = 'sitemap-'.$i.'.xml'.".gz";
// Open the gz file (w9 is the highest compression)
$fp = gzopen ($gzfile, 'w9');
// Compress the file
gzwrite ($fp, file_get_contents($file));
// Close the gz file and we're done
gzclose($fp);
当我点击链接示例:www.example.com/sitemap/sitemap-1.xml.gz时,当我打开它时,我得到了这个:IMAGE。如果我只写了www.example.com/sitemap/sitemap-1.gz,我会得到正确的文件。