...
|
...
|
@@ -31,18 +31,18 @@ app.set('views', path.join(__dirname, 'apps/views')); |
|
|
app.set('view engine', 'hbs');
|
|
|
|
|
|
// 设置public文件夹为存放静态文件的目录
|
|
|
app.use('/goods-xml', express.static(path.join(__dirname, './public/dist/goods-xml/')));
|
|
|
app.use('/xml-data/goods-xml', express.static(path.join(__dirname, './public/dist/goods-xml/')));
|
|
|
|
|
|
// 添加请求上下文
|
|
|
app.use(global.yoho.httpCtx());
|
|
|
|
|
|
app.get('/goods-:start.xml', cseo.index);
|
|
|
app.get('/auto-goods.html', cseo.autoGoodsXml);
|
|
|
app.get('/seo/setTask', cseo.setTask);
|
|
|
app.get('/seo/delTask', cseo.delTask);
|
|
|
app.get('/goods/sitemap.xml', cseo.siteMapXml);
|
|
|
app.get('/demo.xml', cseo.demoXml);
|
|
|
app.get('/demo.xsd', cseo.demoXsd);
|
|
|
app.get('/xml-data/goods-:start.xml', cseo.index);
|
|
|
app.get('/xml-data/auto-goods.html', cseo.autoGoodsXml);
|
|
|
app.get('/xml-data/setTask', cseo.setTask);
|
|
|
app.get('/xml-data/delTask', cseo.delTask);
|
|
|
app.get('/xml-data/goods/sitemap.xml', cseo.siteMapXml);
|
|
|
app.get('/xml-data/demo.xml', cseo.demoXml);
|
|
|
app.get('/xml-data/demo.xsd', cseo.demoXsd);
|
|
|
|
|
|
// 定时任务 主动推送和生成xml
|
|
|
seo.start();
|
...
|
...
|
|