Showing
1 changed file
with
8 additions
and
8 deletions
@@ -31,18 +31,18 @@ app.set('views', path.join(__dirname, 'apps/views')); | @@ -31,18 +31,18 @@ app.set('views', path.join(__dirname, 'apps/views')); | ||
31 | app.set('view engine', 'hbs'); | 31 | app.set('view engine', 'hbs'); |
32 | 32 | ||
33 | // 设置public文件夹为存放静态文件的目录 | 33 | // 设置public文件夹为存放静态文件的目录 |
34 | -app.use('/goods-xml', express.static(path.join(__dirname, './public/dist/goods-xml/'))); | 34 | +app.use('/xml-data/goods-xml', express.static(path.join(__dirname, './public/dist/goods-xml/'))); |
35 | 35 | ||
36 | // 添加请求上下文 | 36 | // 添加请求上下文 |
37 | app.use(global.yoho.httpCtx()); | 37 | app.use(global.yoho.httpCtx()); |
38 | 38 | ||
39 | -app.get('/goods-:start.xml', cseo.index); | ||
40 | -app.get('/auto-goods.html', cseo.autoGoodsXml); | ||
41 | -app.get('/seo/setTask', cseo.setTask); | ||
42 | -app.get('/seo/delTask', cseo.delTask); | ||
43 | -app.get('/goods/sitemap.xml', cseo.siteMapXml); | ||
44 | -app.get('/demo.xml', cseo.demoXml); | ||
45 | -app.get('/demo.xsd', cseo.demoXsd); | 39 | +app.get('/xml-data/goods-:start.xml', cseo.index); |
40 | +app.get('/xml-data/auto-goods.html', cseo.autoGoodsXml); | ||
41 | +app.get('/xml-data/setTask', cseo.setTask); | ||
42 | +app.get('/xml-data/delTask', cseo.delTask); | ||
43 | +app.get('/xml-data/goods/sitemap.xml', cseo.siteMapXml); | ||
44 | +app.get('/xml-data/demo.xml', cseo.demoXml); | ||
45 | +app.get('/xml-data/demo.xsd', cseo.demoXsd); | ||
46 | 46 | ||
47 | // 定时任务 主动推送和生成xml | 47 | // 定时任务 主动推送和生成xml |
48 | seo.start(); | 48 | seo.start(); |
-
Please register or login to post a comment