Authored by 周少峰

sitemap

  1 +'use strict';
  2 +
  3 +// const helpers = global.yoho.helpers;
  4 +const _ = require('lodash');
  5 +const sm = require('sitemap');
  6 +const staticUrls = require('../../../config/staticUrls');
  7 +const getStaticUrls = (currentStatics) => {
  8 + let urls = [];
  9 +
  10 + _.forEach(_.get(currentStatics, 'loc', []), url => {
  11 + urls.push({
  12 + url: url,
  13 + changefreq: currentStatics.changefreq,
  14 + priority: currentStatics.priority
  15 + });
  16 + });
  17 +
  18 +
  19 + _.forEach(currentStatics, (value) => {
  20 + _.forEach(value.loc, url => {
  21 + urls.push({
  22 + url: url,
  23 + changefreq: value.changefreq,
  24 + priority: value.priority
  25 + });
  26 + });
  27 + });
  28 + return urls;
  29 +};
  30 +
  31 +// www 地图数据
  32 +const wwwXmlData = () => {// eslint-disable-line
  33 + return getStaticUrls(_.get(staticUrls, 'www'));
  34 +};
  35 +
  36 +// list 地图数据
  37 +const listXmlData = () => {// eslint-disable-line
  38 + return getStaticUrls(_.get(staticUrls, 'list'));
  39 +};
  40 +
  41 +// item 地图数据
  42 +const itemXmlData = () => {// eslint-disable-line
  43 + return getStaticUrls(_.get(staticUrls, 'item'));
  44 +};
  45 +
  46 +// guang 地图数据
  47 +const guangXmlData = () => {// eslint-disable-line
  48 + return getStaticUrls(_.get(staticUrls, 'guang'));
  49 +};
  50 +
  51 +// 站点地图
  52 +const siteMap = (req, res) => {
  53 + let siteList = ['www', 'list', 'item', 'guang'],
  54 + subdomain = req.subdomains[0] || 'www';
  55 +
  56 + if (!siteList.subdomain) {
  57 + res.end();
  58 + }
  59 +
  60 + sm.createSitemap({
  61 + hostname: `https://${subdomain}.yohobuy.com`,
  62 + urls: eval(subdomain + 'XmlData')() // eslint-disable-line
  63 + }).toXML(function(err, xml) {
  64 + if (err) {
  65 + return res.status(500).end();
  66 + }
  67 + res.header('Content-Type', 'application/xml');
  68 + res.send(xml);
  69 + });
  70 +};
  71 +
  72 +module.exports = {
  73 + siteMap
  74 +};
@@ -17,6 +17,7 @@ const robot = require(`${cRoot}/robot-check`); // 机器人检查 @@ -17,6 +17,7 @@ const robot = require(`${cRoot}/robot-check`); // 机器人检查
17 const materialController = require(`${cRoot}/material`); 17 const materialController = require(`${cRoot}/material`);
18 const activate = require(`${cRoot}/activate`); // 激活点击统计 18 const activate = require(`${cRoot}/activate`); // 激活点击统计
19 const questionnaire = require(`${cRoot}/questionnaire`); 19 const questionnaire = require(`${cRoot}/questionnaire`);
  20 +const sitemap = require(`${cRoot}/sitemap`);
20 21
21 router.get('/ads', ads.jump); 22 router.get('/ads', ads.jump);
22 router.get('/check', captcha.tryGeetest, robot.index); 23 router.get('/check', captcha.tryGeetest, robot.index);
@@ -31,5 +32,5 @@ router.get('/material/getRecommendlist', auth, materialController.getRecommendli @@ -31,5 +32,5 @@ router.get('/material/getRecommendlist', auth, materialController.getRecommendli
31 router.get('/activate-count', auth, activate.index); 32 router.get('/activate-count', auth, activate.index);
32 router.get('/activate-count/getList', auth, activate.getList); 33 router.get('/activate-count/getList', auth, activate.getList);
33 router.get('/questionnaire/:id', auth, questionnaire.getQuestionnaire); 34 router.get('/questionnaire/:id', auth, questionnaire.getQuestionnaire);
34 - 35 +router.get('/sitemap.xml', sitemap.siteMap);
35 module.exports = router; 36 module.exports = router;
  1 +/**
  2 + * pc/wap站静态url 用于站点地图
  3 + *
  4 + */
  5 +
  6 +const moment = require('moment');
  7 +const today = moment().format('Y-M-D');
  8 +
  9 +module.exports = {
  10 + www: {
  11 + // 频道
  12 + channel: {
  13 + loc: ['https:www.yohobuy.com/', 'https://www.yohobuy.com/girls/', 'https://www.yohobuy.com/kids/', 'https://www.yohobuy.com/lifestyle/'],
  14 + lastmod: today,
  15 + changefreq: 'daily',
  16 + priority: 0.8
  17 + },
  18 +
  19 + // 品牌一览
  20 + brands: {
  21 + loc: ['https://www.yohobuy.com/boys-brands/', 'https://www.yohobuy.com/girls-brands/', 'https://www.yohobuy.com/kids-brands/', 'https://www.yohobuy.com/lifestyle-brands/'],
  22 + lastmod: today,
  23 + changefreq: 'daily',
  24 + priority: 0.5
  25 + },
  26 +
  27 + // 领券中心
  28 + coupon: {
  29 + loc: ['https://www.yohobuy.com/coupon/'],
  30 + lastmod: today,
  31 + changefreq: 'weekly',
  32 + priority: 0.3
  33 +
  34 + },
  35 +
  36 + // sale
  37 + salse: {
  38 + loc: ['https://www.yohobuy.com/product/boys-sale/', 'https://www.yohobuy.com/product/girls-sale/', 'https://www.yohobuy.com/product/kids-sale/', 'https://www.yohobuy.com/product/lifestyle-sale/'],
  39 + lastmod: today,
  40 + changefreq: 'daily',
  41 + priority: 0.3
  42 + }
  43 +
  44 + },
  45 + list: {
  46 + // 新品到着
  47 + new: {
  48 + loc: ['https://list.yohobuy.com/boys-new/', 'https://list.yohobuy.com/girls-new/', 'https://list.yohobuy.com/kids-new/', 'https://list.yohobuy.com/lifestyle-new/'],
  49 + lastmod: today,
  50 + changefreq: 'daily',
  51 + priority: 0.5
  52 + },
  53 +
  54 + // 分类列表
  55 + category: {
  56 + loc: [],
  57 + lastmod: today,
  58 + changefreq: 'daily',
  59 + priority: 0.3
  60 + }
  61 + },
  62 +
  63 + // 搜索列表
  64 + search: {
  65 + loc: ['https://search.yohobuy.com/'],
  66 + lastmod: today,
  67 + changefreq: 'daily',
  68 + priority: 0.3
  69 + },
  70 +
  71 + // 逛 编辑列表/标签列表/逛详情动态添加
  72 + guang: {
  73 + loc: ['https://guang.yohobuy.com/boys/', 'https://guang.yohobuy.com/girls/', 'https://guang.yohobuy.com/kids/', 'https://guang.yohobuy.com/lifestyle/'],
  74 + lastmod: today,
  75 + changefreq: 'daily',
  76 + priority: 0.3
  77 + },
  78 +
  79 + // 商品详情动态添加
  80 + item: {
  81 + loc: [],
  82 + lastmod: today,
  83 + changefreq: 'daily',
  84 + priority: 0.3
  85 + },
  86 + m: {
  87 + // 频道
  88 + channel: {
  89 + loc: ['https:m.yohobuy.com/', 'https://m.yohobuy.com/girls/', 'https://m.yohobuy.com/kids/', 'https://m.yohobuy.com/lifestyle/'],
  90 + lastmod: today,
  91 + changefreq: 'daily',
  92 + priority: 0.8
  93 + },
  94 +
  95 + // 新品到着
  96 + new: {
  97 + loc: ['https://m.yohobuy.com/product/boys-new/', 'https://m.yohobuy.com/product/girls-new/', 'https://m.yohobuy.com/product/kids-new/?msort=365', 'https://m.yohobuy.com/product/lifestyle-new/?msort=10'],
  98 + lastmod: today,
  99 + changefreq: 'daily',
  100 + priority: 0.5
  101 + },
  102 +
  103 + // 品牌一览
  104 + brands: {
  105 + loc: ['https://m.yohobuy.com/boys-brands/', 'https://m.yohobuy.com/girls-brands/', 'https://m.yohobuy.com/kids-brands/', 'https://m.yohobuy.com/lifestyle-brands/'],
  106 + lastmod: today,
  107 + changefreq: 'daily',
  108 + priority: 0.5
  109 + },
  110 +
  111 + // 领券中心
  112 + coupon: {
  113 + loc: ['https://m.yohobuy.com/coupon/floor?title=领券中心&share_id=1037&code=b78b32ed81b18dde8ac84fd33602b88b&type=5'],
  114 + lastmod: today,
  115 + changefreq: 'weekly',
  116 + priority: 0.3
  117 + },
  118 +
  119 + // sale
  120 + salse: {
  121 + loc: ['https://m.yohobuy.com/product/boys-sale/', 'https://m.yohobuy.com/product/girls-sale/', 'https://m.yohobuy.com/product/kids-sale/?msort=365', 'https://m.yohobuy.com/product/lifestyle-sale/?msort=10'],
  122 + lastmod: today,
  123 + changefreq: 'daily',
  124 + priority: 0.3
  125 + },
  126 +
  127 + // 分类列表 TODO 链接优化后再推
  128 + // category: {
  129 + // loc: ['https://m.yohobuy.com/cate', 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=373&sort_name=T%E6%81%A4',
  130 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=387&sort_name=%E8%83%8C%E5%BF%83',
  131 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=452&sort_name=POLO',
  132 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=374&sort_name=%E8%A1%AC%E8%A1%AB',
  133 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=418&sort_name=%E5%A5%97%E8%A3%85',
  134 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=397&sort_name=%E5%8D%AB%E8%A1%A3',
  135 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=405&sort_name=%E5%A4%B9%E5%85%8B',
  136 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=401&sort_name=%E6%AF%9B%E8%A1%A3%2F%E9%92%88%E7%BB%87',
  137 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=407&sort_name=%E5%A4%A7%E8%A1%A3%2F%E9%A3%8E%E8%A1%A3',
  138 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=432&sort_name=%E7%BE%BD%E7%BB%92%E6%9C%8D',
  139 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=424&sort_name=%E6%A3%89%E8%A1%A3',
  140 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=457&sort_name=%E8%A5%BF%E8%A3%85',
  141 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=407%2C405%2C397%2C374%2C373%2C401%2C432%2C424%2C457%2C452%2C418%2C387&sort_name=%E4%B8%8A%E8%A1%A3',
  142 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=378&sort_name=%E8%BF%9E%E8%A1%A3%E8%A3%99',
  143 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=379&sort_name=%E5%8D%8A%E8%BA%AB%E8%A3%99',
  144 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=378%2C379&sort_name=%E8%A3%99%E8%A3%85',
  145 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=377&sort_name=%E7%9F%AD%E8%A3%A4',
  146 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=376&sort_name=%E4%BC%91%E9%97%B2%E8%A3%A4',
  147 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=389&sort_name=%E7%89%9B%E4%BB%94%E8%A3%A4',
  148 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=385&sort_name=%E6%89%93%E5%BA%95%E8%A3%A4',
  149 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=472&sort_name=%E8%BF%9E%E4%BD%93%E8%A3%A4',
  150 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=389%2C385%2C377%2C376%2C470&sort_name=%E8%A3%A4%E8%A3%85',
  151 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=383&sort_name=%E5%87%89%E9%9E%8B%2F%E5%87%89%E6%8B%96',
  152 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=375&sort_name=%E4%BC%91%E9%97%B2%2F%E8%BF%90%E5%8A%A8%E9%9E%8B',
  153 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=461&sort_name=%E6%97%B6%E8%A3%85%E9%9E%8B',
  154 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=463&sort_name=%E9%9D%B4%E5%AD%90',
  155 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=383%2C375%2C461%2C463&sort_name=%E9%9E%8B%E9%9D%B4',
  156 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=431%2C433&sort_name=%E5%A4%AA%E9%98%B3%E9%95%9C%2F%E7%9C%BC%E9%95%9C',
  157 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=409&sort_name=%E8%A2%9C%E5%AD%90',
  158 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=415%2C416%2C458%2C459&sort_name=%E5%B8%BD%E5%AD%90',
  159 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=422&sort_name=%E5%9B%B4%E5%B7%BE',
  160 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=431%2C433%2C415%2C416%2C422%2C395%2C428%2C409&sort_name=%E6%9C%8D%E9%85%8D',
  161 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=393&sort_name=%E5%8F%8C%E8%82%A9%E5%8C%85',
  162 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=393%2C411&sort_name=%E5%8C%85%E7%B1%BB',
  163 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=478%2C480%2C270%2C332&sort_name=%E7%94%9F%E6%B4%BB%E6%97%A5%E7%94%A8',
  164 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=482%2C484%2C486&sort_name=%E5%B0%8F%E5%AE%B6%E7%94%B5',
  165 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=488%2C490%2C277&sort_name=%E5%88%9B%E6%84%8F%E7%A4%BC%E5%93%81',
  166 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=353%2C496%2C450&sort_name=%E5%AE%B6%E5%B1%85%E5%AE%B6%E7%BA%BA',
  167 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=275&sort_name=%E5%AE%B6%E5%B1%85%E9%A5%B0%E5%93%81',
  168 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=271&sort_name=%E9%9D%A0%E5%9E%AB%2F%E6%8A%B1%E6%9E%95',
  169 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=274&sort_name=%E9%A6%99%E8%96%B0%2F%E9%A6%99%E6%B0%9B',
  170 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=273&sort_name=%E5%8E%A8%E5%85%B7%2F%E9%A4%90%E5%85%B7',
  171 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=272&sort_name=%E5%82%A8%E7%89%A9%E6%94%B6%E7%BA%B3',
  172 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=272%2C353%2C267%2C268%2C269%2C270%2C271%2C273%2C274%2C275%2C276%2C332%2C333%2C450%2C277&sort_name=%E5%AE%B6%E5%B1%85%E7%94%9F%E6%B4%BB',
  173 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=261&sort_name=%E5%BD%A9%E5%A6%86',
  174 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=263&sort_name=%E9%A6%99%E6%B0%B4',
  175 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=260&sort_name=%E9%9D%A2%E9%83%A8%E6%8A%A4%E8%82%A4',
  176 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=264&sort_name=%E4%B8%AA%E4%BA%BA%E6%8A%A4%E7%90%86',
  177 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=352&sort_name=%E7%BA%B9%E8%BA%AB%E8%B4%B4',
  178 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=263%2C260%2C264%2C261%2C352%2C262&sort_name=%E7%BE%8E%E5%A6%86%2F%E4%B8%AA%E6%8A%A4',
  179 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=514&sort_name=%E6%89%8B%E6%9C%BA',
  180 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=313&sort_name=%E6%89%8B%E6%9C%BA%2Fipad%E5%A3%B3',
  181 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=212&sort_name=%E6%89%8B%E6%9C%BA%E9%85%8D%E4%BB%B6',
  182 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=398&sort_name=%E6%99%BA%E8%83%BD%E8%A3%85%E5%A4%87',
  183 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=492%2C494&sort_name=%E5%BD%B1%E9%9F%B3%E5%A8%B1%E4%B9%90',
  184 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=212%2C313%2C398%2C492%2C494%2C514&sort_name=%E6%95%B0%E7%A0%813C',
  185 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=171&sort_name=%E8%80%B3%E6%9C%BA',
  186 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=185&sort_name=%E7%9B%B8%E6%9C%BA',
  187 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=162&sort_name=%E6%89%8B%E8%A1%A8',
  188 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=211%2C113%2C200&sort_name=%E6%95%B0%E7%A0%81%E9%85%8D%E4%BB%B6',
  189 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=267&sort_name=%E6%9D%AF%E5%AD%90%2F%E6%B0%B4%E5%A3%B6',
  190 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=333&sort_name=%E9%9B%A8%E4%BC%9E%2F%E9%9B%A8%E8%A1%A3',
  191 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=466&sort_name=%E8%87%AA%E8%A1%8C%E8%BD%A6',
  192 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=302%2C343%2C344%2C399&sort_name=%E8%A3%85%E5%A4%87',
  193 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=466%2C302%2C343%2C344%2C399&sort_name=%E8%BF%90%E5%8A%A8%E6%88%B7%E5%A4%96',
  194 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=292%2C449&sort_name=%E7%8E%A9%E5%81%B6',
  195 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=304&sort_name=DIY%2F%E6%A8%A1%E5%9E%8B',
  196 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=498&sort_name=%E6%88%90%E4%BA%BA%E7%94%A8%E5%93%81',
  197 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=292%2C304%2C449%2C498&sort_name=%E7%8E%A9%E5%85%B7%E5%A8%B1%E4%B9%90',
  198 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=184&sort_name=%E5%AD%A6%E4%B9%A0%E7%94%A8%E5%93%81',
  199 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=112&sort_name=%E7%AC%94',
  200 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=111&sort_name=%E6%9C%AC%E5%AD%90',
  201 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=110&sort_name=%E5%9B%BE%E4%B9%A6%2F%E9%9F%B3%E5%83%8F',
  202 + // 'https://list.m.yohobuy.com/?gender=1%2C2%2C3&sort=110%2C111%2C112%2C184&sort_name=%E5%9B%BE%E4%B9%A6%E6%96%87%E5%85%B7',
  203 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=114&sort_name=T%E6%81%A4',
  204 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=116&sort_name=POLO',
  205 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=115%2C516&sort_name=%E8%A1%AC%E8%A1%AB',
  206 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=124%2C516&sort_name=%E5%A4%B9%E5%85%8B',
  207 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=119%2C516&sort_name=%E5%8D%AB%E8%A1%A3',
  208 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=227&sort_name=%E9%98%B2%E9%A3%8E%E5%A4%96%E5%A5%97',
  209 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=173&sort_name=%E7%9A%AE%E8%A1%A3',
  210 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=258&sort_name=%E6%AF%9B%E8%A1%A3%2F%E9%92%88%E7%BB%87',
  211 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=125&sort_name=%E5%A4%A7%E8%A1%A3%2F%E9%A3%8E%E8%A1%A3',
  212 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=122&sort_name=%E8%A5%BF%E8%A3%85',
  213 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=118&sort_name=%E9%A9%AC%E7%94%B2',
  214 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=117&sort_name=%E8%83%8C%E5%BF%83',
  215 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=413&sort_name=%E5%A5%97%E8%A3%85',
  216 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=123&sort_name=%E6%A3%89%E8%A1%A3',
  217 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=121&sort_name=%E7%BE%BD%E7%BB%92%E6%9C%8D',
  218 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=114%2C293%2C116%2C117%2C115%2C119%2C124%2C122%2C413%2C258%2C173%2C227%2C125%2C118%2C121%2C123&sort_name=%E4%B8%8A%E8%A1%A3',
  219 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=129&sort_name=%E4%BC%91%E9%97%B2%E8%A3%A4',
  220 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=131&sort_name=%E7%9F%AD%E8%A3%A4',
  221 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=130&sort_name=%E7%89%9B%E4%BB%94%E8%A3%A4',
  222 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=346&sort_name=%E8%BF%90%E5%8A%A8%E8%A3%A4',
  223 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=133&sort_name=%E6%89%93%E5%BA%95%2F%E7%B4%A7%E8%BA%AB%E8%A3%A4',
  224 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=223&sort_name=%E8%BF%9E%E4%BD%93%E8%A3%A4',
  225 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=348&sort_name=%E8%A5%BF%E8%A3%A4',
  226 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=129%2C222%2C130%2C131%2C346%2C133%2C348&sort_name=%E8%A3%A4%E8%A3%85',
  227 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=147&sort_name=%E4%BC%91%E9%97%B2%2F%E8%BF%90%E5%8A%A8%E9%9E%8B',
  228 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=149&sort_name=%E5%87%89%E9%9E%8B%2F%E5%87%89%E6%8B%96',
  229 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=148&sort_name=%E9%9D%B4%E5%AD%90',
  230 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=151&sort_name=%E6%97%B6%E8%A3%85%E9%9E%8B',
  231 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=231&sort_name=%E4%BF%9D%E5%85%BB%E6%8A%A4%E7%90%86',
  232 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=147%2C149%2C148%2C151%2C231%2C298&sort_name=%E9%9E%8B%E9%9D%B4',
  233 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=152&sort_name=%E5%8F%8C%E8%82%A9%E5%8C%85',
  234 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=153%2C196%2C195%2C197&sort_name=%E6%89%8B%E6%8B%8E%2F%E5%8D%95%E8%82%A9%E5%8C%85',
  235 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=238%2C239&sort_name=%E9%92%B1%E5%8C%85%2F%E5%8D%A1%E5%8C%85',
  236 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=157&sort_name=%E8%85%B0%E5%8C%85',
  237 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=342&sort_name=%E9%82%AE%E5%B7%AE%E5%8C%85',
  238 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=156&sort_name=%E7%94%B5%E8%84%91%E5%8C%85',
  239 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=161%2C300&sort_name=%E5%82%A8%E7%89%A9%E5%8C%85',
  240 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=160&sort_name=%E7%8E%AF%E4%BF%9D%E5%8C%85',
  241 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=233&sort_name=%E5%8C%85%E9%85%8D',
  242 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=341&sort_name=tote%E5%8C%85',
  243 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=340&sort_name=%E6%97%85%E8%A1%8C%E5%8C%85',
  244 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=210&sort_name=%E6%97%85%E8%A1%8C%E7%AE%B1',
  245 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=240%2C349&sort_name=%E6%89%8B%E5%8C%85%2F%E9%92%A5%E5%8C%99%E5%8C%85',
  246 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=152%2C153%2C196%2C238%2C239%2C240%2C349%2C157%2C342%2C156%2C161%2C300%2C160%2C233%2C341%2C340%2C210%2C339%2C351%2C195%2C197&sort_name=%E5%8C%85%E7%B1%BB',
  247 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=72%2C74%2C75%2C76&sort_name=%E9%A6%96%E9%A5%B0',
  248 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=224%2C322%2C323%2C324%2C325%2C326%2C327%2C328%2C329%2C330%2C331&sort_name=%E5%B8%BD%E5%AD%90',
  249 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=162&sort_name=%E6%89%8B%E8%A1%A8',
  250 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=142&sort_name=%E8%A2%9C%E5%AD%90',
  251 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=77%2C79%2C80%2C213%2C217%2C218%2C234%2C303%2C305%2C306%2C307%2C334&sort_name=%E9%85%8D%E9%A5%B0',
  252 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=78%2C199&sort_name=%E7%9A%AE%E5%B8%A6',
  253 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=186%2C235&sort_name=%E5%A4%AA%E9%98%B3%E9%95%9C%2F%E7%9C%BC%E9%95%9C',
  254 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=316&sort_name=%E5%9B%B4%E5%B7%BE',
  255 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=320&sort_name=%E6%89%8B%E5%B8%95',
  256 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=321&sort_name=%E4%B8%9D%E5%B7%BE',
  257 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=164&sort_name=%E6%89%8B%E5%A5%97',
  258 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=317&sort_name=%E6%8A%AB%E8%82%A9',
  259 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=186%2C235%2C163%2C224%2C322%2C323%2C324%2C325%2C326%2C327%2C328%2C329%2C330%2C331%2C72%2C74%2C75%2C76%2C142%2C77%2C78%2C79%2C80%2C199%2C213%2C217%2C218%2C234%2C303%2C305%2C306%2C307%2C334%2C162%2C316%2C320%2C164%2C317%2C295%2C321&sort_name=%E6%9C%8D%E9%85%8D',
  260 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=311&sort_name=%E5%86%85%E8%A3%A4',
  261 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=357&sort_name=%E5%AE%B6%E5%B1%85%E6%9C%8D',
  262 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=311%2C357%2C359&sort_name=%E5%86%85%E8%A1%A3%2F%E5%AE%B6%E5%B1%85%E6%9C%8D',
  263 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=264&sort_name=%E4%B8%AA%E4%BA%BA%E6%8A%A4%E7%90%86',
  264 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=352&sort_name=%E7%BA%B9%E8%BA%AB%E8%B4%B4',
  265 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=263&sort_name=%E9%A6%99%E6%B0%B4',
  266 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=260&sort_name=%E9%9D%A2%E9%83%A8%E6%8A%A4%E7%90%86',
  267 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=261&sort_name=%E5%BD%A9%E5%A6%86',
  268 + // 'https://list.m.yohobuy.com/?gender=1%2C3&sort=263%2C260%2C264%2C261%2C352%2C262%2C265&sort_name=%E7%BE%8E%E5%A6%86%2F%E4%B8%AA%E6%8A%A4',
  269 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=114&sort_name=T%E6%81%A4',
  270 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=115%2C516&sort_name=%E8%A1%AC%E8%A1%AB',
  271 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=119&sort_name=%E5%8D%AB%E8%A1%A3',
  272 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=124%2C516&sort_name=%E5%A4%B9%E5%85%8B',
  273 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=258&sort_name=%E6%AF%9B%E8%A1%A3%2F%E9%92%88%E7%BB%87',
  274 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=125&sort_name=%E5%A4%A7%E8%A1%A3%2F%E9%A3%8E%E8%A1%A3',
  275 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=173&sort_name=%E7%9A%AE%E8%A1%A3',
  276 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=227&sort_name=%E9%98%B2%E9%A3%8E%E5%A4%96%E5%A5%97',
  277 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=122&sort_name=%E8%A5%BF%E8%A3%85',
  278 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=118&sort_name=%E9%A9%AC%E7%94%B2',
  279 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=121%2C123&sort_name=%E6%A3%89%E6%9C%8D',
  280 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=121&sort_name=%E7%BE%BD%E7%BB%92%E6%9C%8D',
  281 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=413&sort_name=%E5%A5%97%E8%A3%85',
  282 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=227%2C173%2C125%2C258%2C121%2C123%2C119%2C124%2C118%2C122%2C115%2C117%2C114%2C293%2C116%2C413&sort_name=%E4%B8%8A%E8%A1%A3',
  283 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=134&sort_name=%E8%BF%9E%E8%A1%A3%E8%A3%99',
  284 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=135&sort_name=%E5%8D%8A%E8%BA%AB%E8%A3%99',
  285 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=134%2C135&sort_name=%E8%A3%99%E8%A3%85',
  286 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=129&sort_name=%E4%BC%91%E9%97%B2%E8%A3%A4',
  287 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=130&sort_name=%E7%89%9B%E4%BB%94%E8%A3%A4',
  288 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=346&sort_name=%E8%BF%90%E5%8A%A8%E8%A3%A4',
  289 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=133&sort_name=%E6%89%93%E5%BA%95%2F%E7%B4%A7%E8%BA%AB%E8%A3%A4',
  290 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=131&sort_name=%E7%9F%AD%E8%A3%A4',
  291 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=348&sort_name=%E8%A5%BF%E8%A3%A4',
  292 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=223&sort_name=%E8%BF%9E%E4%BD%93%E8%A3%A4',
  293 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=348%2C346%2C131%2C133%2C129%2C130&sort_name=%E8%A3%A4%E8%A3%85',
  294 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=147&sort_name=%E4%BC%91%E9%97%B2%2F%E8%BF%90%E5%8A%A8%E9%9E%8B',
  295 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=151&sort_name=%E6%97%B6%E8%A3%85%E9%9E%8B',
  296 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=148&sort_name=%E9%9D%B4%E5%AD%90%2F%E9%AB%98%E5%B8%AE%E9%9E%8B',
  297 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=149&sort_name=%E5%87%89%E9%9E%8B%2F%E5%87%89%E6%8B%96',
  298 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=231&sort_name=%E4%BF%9D%E5%85%BB%E6%8A%A4%E7%90%86',
  299 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=147%2C149%2C148%2C151%2C231%2C508&sort_name=%E9%9E%8B%E9%9D%B4',
  300 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=152&sort_name=%E5%8F%8C%E8%82%A9%E5%8C%85',
  301 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=153%2C195%2C196%2C197&sort_name=%E6%89%8B%E6%8B%8E%2F%E5%8D%95%E8%82%A9%E5%8C%85',
  302 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=238%2C239&sort_name=%E9%92%B1%E5%8C%85%2F%E5%8D%A1%E5%8C%85',
  303 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=240%2C349&sort_name=%E6%89%8B%E5%8C%85%2F%E9%92%A5%E5%8C%99%E5%8C%85',
  304 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=157&sort_name=%E8%85%B0%E5%8C%85',
  305 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=342&sort_name=%E9%82%AE%E5%B7%AE%E5%8C%85',
  306 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=156&sort_name=%E7%94%B5%E8%84%91%E5%8C%85',
  307 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=161%2C300&sort_name=%E5%82%A8%E7%89%A9%E5%8C%85',
  308 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=160&sort_name=%E7%8E%AF%E4%BF%9D%E5%8C%85',
  309 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=233&sort_name=%E5%8C%85%E9%85%8D',
  310 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=341&sort_name=tote%E5%8C%85',
  311 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=340&sort_name=%E6%97%85%E8%A1%8C%E5%8C%85',
  312 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=210&sort_name=%E6%97%85%E8%A1%8C%E7%AE%B1',
  313 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=152%2C153%2C238%2C239%2C240%2C349%2C157%2C342%2C156%2C161%2C300%2C160%2C233%2C341%2C340%2C210%2C339%2C351%2C195%2C196%2C197&sort_name=%E5%8C%85%E7%B1%BB',
  314 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=224%2C322%2C323%2C324%2C325%2C326%2C327%2C328%2C329%2C330%2C331&sort_name=%E5%B8%BD%E5%AD%90',
  315 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=186%2C235&sort_name=%E5%A4%AA%E9%98%B3%E9%95%9C%2F%E7%9C%BC%E9%95%9C',
  316 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=72%2C74%2C75%2C76&sort_name=%E9%A6%96%E9%A5%B0',
  317 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=162&sort_name=%E6%89%8B%E8%A1%A8',
  318 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=77%2C78%2C79%2C80%2C199%2C213%2C217%2C218%2C234%2C303%2C305%2C306%2C307%2C334&sort_name=%E9%85%8D%E9%A5%B0',
  319 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=142&sort_name=%E8%A2%9C%E5%AD%90',
  320 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=164&sort_name=%E6%89%8B%E5%A5%97',
  321 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=317&sort_name=%E6%8A%AB%E8%82%A9',
  322 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=316&sort_name=%E5%9B%B4%E5%B7%BE',
  323 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=320&sort_name=%E6%89%8B%E5%B8%95',
  324 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=321&sort_name=%E4%B8%9D%E5%B7%BE',
  325 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=186%2C235%2C163%2C224%2C322%2C323%2C324%2C325%2C326%2C327%2C328%2C329%2C330%2C331%2C72%2C74%2C75%2C76%2C142%2C77%2C78%2C79%2C80%2C199%2C213%2C217%2C218%2C234%2C303%2C305%2C306%2C307%2C334%2C162%2C316%2C320%2C164%2C317%2C295%2C321&sort_name=%E6%9C%8D%E9%85%8D',
  326 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=364&sort_name=%E6%96%87%E8%83%B8',
  327 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=311&sort_name=%E5%86%85%E8%A3%A4',
  328 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=357&sort_name=%E5%AE%B6%E5%B1%85%E6%9C%8D',
  329 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=359&sort_name=%E5%AE%B6%E5%B1%85%E9%9E%8B',
  330 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=311%2C364%2C357%2C359&sort_name=%E5%86%85%E8%A1%A3%2F%E5%AE%B6%E5%B1%85%E6%9C%8D',
  331 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=263&sort_name=%E9%A6%99%E6%B0%B4',
  332 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=264&sort_name=%E4%B8%AA%E4%BA%BA%E6%8A%A4%E7%90%86',
  333 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=261&sort_name=%E5%BD%A9%E5%A6%86',
  334 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=352&sort_name=%E7%BA%B9%E8%BA%AB%E8%B4%B4',
  335 + // 'https://list.m.yohobuy.com/?gender=2%2C3&sort=263%2C264%2C260%2C261%2C262%2C265%2C352&sort_name=%E7%BE%8E%E5%A6%86%2F%E4%B8%AA%E6%8A%A4'],
  336 + // lastmod: today,
  337 + // changefreq: 'daily',
  338 + // priority: 0.3
  339 + // },
  340 +
  341 + item: {
  342 + loc: [],
  343 + lastmod: today,
  344 + changefreq: 'daily',
  345 + priority: 0.3
  346 + }
  347 + },
  348 + 'guang.m': {
  349 + loc: ['https://guang.m.yohobuy.com/?gender=1%2C3', 'https://guang.m.yohobuy.com/?gender=2%2C3', 'https://guang.m.yohobuy.com/?gender=1%2C2%2C3', 'https://guang.m.yohobuy.com/?id=2&name=%E6%90%AD%E9%85%8D', 'https://guang.m.yohobuy.com/?id=4', 'http://guang.m.yohobuy.com/?id=0', 'https://guang.m.yohobuy.com/?id=1', 'https://guang.m.yohobuy.com/?id=3', 'https://guang.m.yohobuy.com/?id=5',
  350 + 'https://guang.m.yohobuy.com/guang/author-8168253/', 'https://guang.m.yohobuy.com/guang/author-8168291', 'https://guang.m.yohobuy.com/guang/author-8168283', 'https://guang.m.yohobuy.com/guang/author-8168239', 'https://guang.m.yohobuy.com/guang/author-8168287', 'https://guang.m.yohobuy.com/guang/author-8168287', 'https://guang.m.yohobuy.com/guang/author-8168259', 'https://guang.m.yohobuy.com/guang/author-7823335', 'https://guang.m.yohobuy.com/guang/author-8123505',
  351 + 'https://guang.m.yohobuy.com/guang/author-6875335', 'https://guang.m.yohobuy.com/guang/author-8168275', 'https://guang.m.yohobuy.com/guang/author-8168289', 'https://guang.m.yohobuy.com/guang/author-8168257', 'https://guang.m.yohobuy.com/guang/author-8168265', 'https://guang.m.yohobuy.com/guang/author-8168271', 'https://guang.m.yohobuy.com/guang/author-8168227', 'https://guang.m.yohobuy.com/guang/author-8168244', 'https://guang.m.yohobuy.com/guang/author-8168255',
  352 + 'https://guang.m.yohobuy.com/guang/author-8168248', 'https://guang.m.yohobuy.com/guang/author-380463'],
  353 + lastmod: today,
  354 + changefreq: 'daily',
  355 + priority: 0.3
  356 + }
  357 +
  358 +
  359 +};
@@ -109,6 +109,11 @@ module.exports = [ @@ -109,6 +109,11 @@ module.exports = [
109 req.mobileUrl = `${MOBILE_DOMAIN}/author-${channel}-${authorId}-p${page}/`; 109 req.mobileUrl = `${MOBILE_DOMAIN}/author-${channel}-${authorId}-p${page}/`;
110 return `/guang/index/editor?channel=${channel}&author_id=${authorId}&page=${page}`; 110 return `/guang/index/editor?channel=${channel}&author_id=${authorId}&page=${page}`;
111 } 111 }
  112 + },
  113 + {
  114 + type: TYPE.rewrite,
  115 + origin: '/sitemap.xml',
  116 + target: '/3party/sitemap.xml'
112 } 117 }
113 118
114 ]; 119 ];
@@ -36,6 +36,7 @@ module.exports = [ @@ -36,6 +36,7 @@ module.exports = [
36 return `/product${req.url}`; 36 return `/product${req.url}`;
37 } 37 }
38 }, 38 },
  39 +
39 // 商品详情页新链接 40 // 商品详情页新链接
40 { 41 {
41 type: TYPE.rewrite, 42 type: TYPE.rewrite,
@@ -44,5 +45,10 @@ module.exports = [ @@ -44,5 +45,10 @@ module.exports = [
44 req.mobileUrl = `${MOBILE_DOMAIN}/product/${p1}.html${p2 ? p2 : ''}`; 45 req.mobileUrl = `${MOBILE_DOMAIN}/product/${p1}.html${p2 ? p2 : ''}`;
45 return `/product${req.url}`; 46 return `/product${req.url}`;
46 } 47 }
  48 + },
  49 + {
  50 + type: TYPE.rewrite,
  51 + origin: '/sitemap.xml',
  52 + target: '/3party/sitemap.xml'
47 } 53 }
48 ]; 54 ];
@@ -73,5 +73,10 @@ module.exports = [ @@ -73,5 +73,10 @@ module.exports = [
73 type: TYPE.rewrite, 73 type: TYPE.rewrite,
74 origin: req => req.path === '/new', 74 origin: req => req.path === '/new',
75 target: '/product/list/new' 75 target: '/product/list/new'
  76 + },
  77 + {
  78 + type: TYPE.rewrite,
  79 + origin: '/sitemap.xml',
  80 + target: '/3party/sitemap.xml'
76 } 81 }
77 ]; 82 ];
@@ -83,6 +83,11 @@ module.exports = [ @@ -83,6 +83,11 @@ module.exports = [
83 type: TYPE.redirect, 83 type: TYPE.redirect,
84 origin: '/index.html', 84 origin: '/index.html',
85 target: helpers.urlFormat('/') 85 target: helpers.urlFormat('/')
  86 + },
  87 + {
  88 + type: TYPE.rewrite,
  89 + origin: '/sitemap.xml',
  90 + target: '/3party/sitemap.xml'
86 } 91 }
87 92
88 ]; 93 ];
@@ -48,6 +48,7 @@ @@ -48,6 +48,7 @@
48 "request-ip": "^1.2.2", 48 "request-ip": "^1.2.2",
49 "request-promise": "^3.0.0", 49 "request-promise": "^3.0.0",
50 "serve-favicon": "^2.3.0", 50 "serve-favicon": "^2.3.0",
  51 + "sitemap": "^1.12.0",
51 "urlencode": "^1.1.0", 52 "urlencode": "^1.1.0",
52 "uuid": "^2.0.2", 53 "uuid": "^2.0.2",
53 "yoho-express-session": "^2.0.0", 54 "yoho-express-session": "^2.0.0",