www.js
1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/**
* Created by TaoHuang on 2017/2/22.
*/
'use strict';
// const _ = require('lodash');
const helpers = global.yoho.helpers;
const TYPE = require('../type');
module.exports = [
// 商品详情页老链接,形试一
{
type: TYPE.redirect,
origin: /^\/product\/pro_([\d]+)_([\d]+)\/(.*).html(.*)/,
target: (req, match, p1, p2, p3, p4) => helpers.urlFormat(`/p${p1}.html${p4}`, null, 'item')
},
// 商品详情页老链接,形式二
{
type: TYPE.redirect,
origin: /^\/product\/pro_([\d]+)(.*)/,
target: (req, match, p1) => helpers.urlFormat(`/p${p1}.html`, null, 'item')
},
// 商品详情页新链接
{
type: TYPE.redirect,
origin: /\/p([\d]+)(.*)/,
target: req => helpers.urlFormat(req.url, null, 'item')
},
// 品牌一览
{
type: TYPE.redirect,
origin: /\/brands\?.*channel=(boys|girls|kids|lifestyle)/,
target: (req) => {
return helpers.urlFormat(
`/${req.query.channel}-brands/`,
null,
'www'
);
}
},
// 品牌一览专题
{
type: TYPE.redirect,
origin: (req) => req.path === '/brands/plusstar',
target: (req) => {
return helpers.urlFormat(
`/${req.query.channel}-brands/plusstar/id${req.query.id || 0}-p${req.query.page || 1}/`,
null,
'www'
);
}
}
];