Authored by 周少峰

seo tdk

... ... @@ -6,6 +6,7 @@
'use strict';
const helpModel = require('../models/help');
const _ = require('lodash');
const index = (req, res, next) => {
let siteUrl = global.yoho.config.siteUrl;
... ... @@ -73,6 +74,8 @@ const detail = (req, res, next) => {
nav = nav.concat(newData.nav);
}
Object.assign(res.locals, _.get(newData, 'data.seoData', {}));
res.render('detail', Object.assign({
module: 'help',
page: 'help',
... ...
... ... @@ -231,6 +231,7 @@ const _processDetailData = (result, params) => {
let contData = false;
let data = _.get(result, '[2].data', {});
let nav = [];
let seoData = {};
// 常见问题
if (data.faqs) {
... ... @@ -275,6 +276,14 @@ const _processDetailData = (result, params) => {
}
});
if (contData.title) {
Object.assign(seoData, {
title: `有货${contData.title}|帮助中心|YOHO!BUY有货 100%正品保证`,
keywords: `${contData.title},有货${contData.title},有货${contData.title}帮助中心`,
description: `有货${contData.title}
YOHO!BUY有货帮助中心${contData.title}频道,提供有关${contData.title}相关问题解答。YOHO!BUY有货100%品牌正品保证,支持货到付款。`
});
}
if (params.keywords) {
nav = [
{
... ... @@ -289,7 +298,8 @@ const _processDetailData = (result, params) => {
nav: nav,
data: {
menuData: menuData,
contData: contData
contData: contData,
seoData: seoData
}
};
};
... ...
/**
* 5cm.yohobuy.com 已经被百度收录,现在5cm店铺为 fivecentimeter,设置301到店铺,后期可删除本文件
* @author sefon 2017-05-04 11:18:56
*/
'use strict';
const TYPE = require('../type');
const helpers = global.yoho.helpers;
module.exports = [
{
type: TYPE.redirect,
origin: /.*/,
target: req => helpers.urlFormat(req.url, null, 'fivecentimeter')
}
];
... ...
'use strict';
const siteName = 'YOHO!BUY有货';
const seoMap = {
/* eslint-disable */
'/': {
... ... @@ -46,7 +46,33 @@ const seoMap = {
title: 'SALE|家居生活用品SALE,生活用品折扣,数码家居特卖YOHO!BUY有货',
keywords: 'SALE,家居生活用品SALE,生活用品折扣,数码家居特卖',
description: 'YOHO!BUY有货SALE频道提供生活用品折扣,数码家居特卖,数码3c,居家,玩具娱乐,文具,美妆等限时特惠。YOHO!BUY有货家居生活用品SALE,,100%正品保证'
},
'/privacy.html': {
title: `有货隐私条款|${siteName}`,
keywords: '有货隐私条款',
description: '有货隐私条款,YOHO!BUY有货100%品牌正品保证,支持货到付款。'
},
'/yohobuy.html': {
title: `关于YOHO!BUY 有货|${siteName}`,
keywords: '关于YOHO!BUY 有货',
description: '关于YOHO!BUY 有货,YOHO!BUY有货100%品牌正品保证,支持货到付款。'
},
'/newpower.html': {
title: `有货关于新力传媒|${siteName}`,
keywords: '关于新力传媒',
description: '关于新力传媒, 南京新与力文化传播有限公司(简称新力传媒)——中国潮流文化生态圈的创造者和引领者。YOHO!BUY有货100%品牌正品保证,支持货到付款。'
},
'/contact.html': {
title: `联系我们|联系方式|${siteName}`,
keywords: '联系我们',
description: '有货联系方式,YOHO!BUY有货100%品牌正品保证,支持货到付款。'
},
'/link.html': {
title: `有货友情链接|${siteName}`,
keywords: '有货友情链接',
description: '有货友情链接,YOHO!BUY有货100%品牌正品保证,支持货到付款。'
}
/* eslint-enable */
};
... ...