Authored by 周少峰

Merge branch 'feature/seoUrl'

... ... @@ -7,8 +7,10 @@ module.exports = () => {
let isMobile = /(nokia|iphone|android|ipad|motorola|^mot\-|softbank|foma|docomo|kddi|up\.browser|up\.link|htc|dopod|blazer|netfront|helio|hosin|huawei|novarra|CoolPad|webos|techfaith|palmsource|blackberry|alcatel|amoi|ktouch|nexian|samsung|^sam\-|s[cg]h|^lge|ericsson|philips|sagem|wellcom|bunjalloo|maui|symbian|smartphone|midp|wap|phone|windows ce|iemobile|^spice|^bird|^zte\-|longcos|pantech|gionee|^sie\-|portalmmm|jig\s browser|hiptop|^ucweb|^benq|haier|^lct|opera\s*mobi|opera\*mini|320x320|240x320|176x220)/i.test(req.get('user-agent')); // eslint-disable-line
if (isMobile) {
req.url = req.url.replace(/^\/p([\d]+).html(.*)/, '/product/pro_$1_1/1.html$2');
return res.redirect(`//m.yohobuy.com${req.url}`);
}
next();
};
};
... ...
... ... @@ -32,7 +32,7 @@ const ptm = {
module.exports = () => {
return (req, res, next) => {
let domain = 'm.yohobuy.com';
let proReg = /^\/product\/pro/,
let proRegNew = /^\/product\/p([\d]+).html(.*)/,
guangReg = /^\/guang/,
guangDetailReg = /\/guang\/info\/index/,
qsReg = /\?/;
... ... @@ -57,8 +57,8 @@ module.exports = () => {
} else if (url === '/guang/Index/editor') {
data.mobileRefer += `/author/index?id=${req.query.author_id}`;
}
} else if (proReg.test(url)) {
data.mobileRefer = `//${domain}${url}`;
} else if (proRegNew.text(url)) {
data.mobileRefer = url.replace(proRegNew, `//${domain}/product/pro_$1_1/1.html$2`);
}
if (!_.isEmpty(req.query) && !qsReg.test(data.mobileRefer)) {
... ...