在给另外个网站做sitemap.xml的时候,用Linux生成结果用错了命令,出现了–no-check-certificate的错误提示。

我用的是:

wget -O /网站目录/sitemap.xml  https://www.xxx.com/sitemap.php

但由于是https的域名,这个命令就不对,默认这个只能适用于http的网站域名。

如果是https,得在中间加个代码:

wget -O /网站目录/sitemap.xml –no-check-certificate https://www.xxx.com/sitemap.php