index.js
839 Bytes
/**
* Created by TaoHuang on 2017/2/21.
*/
'use strict;'
const helpers = global.yoho.helpers;
const TYPE = require('../type');
const MOBILE_DOMAIN = '//item.m.yohobuy.com';
module.exports = [
// 商品详情页老链接
{
type: TYPE.redirect,
origin: /^\/product\/pro_([\d]+)_([\d]+)\/(.*).html(.*)/,
target: (req, match, p1, p2, p3, p4) => {
req.mobileUrl = `${MOBILE_DOMAIN}/product/pro_${p1}_1/1.html${p4}`;
return helpers.urlFormat(`/p${p1}.html${p4}`, null, 'item');
}
},
// 商品详情页新链接
{
type: TYPE.rewrite,
origin: /^\/p([\d]+).html(.*)/,
target: (req, match, p1, p2) => {
req.mobileUrl = `${MOBILE_DOMAIN}/product/pro_${p1}_1/1.html${p2}`;
return `/product${req.url}`;
}
}
];