Ghost 301将www重定向到非www

时间:2016-02-01 19:48:40

标签: javascript node.js redirect ghost

我希望每次将www.url与url匹配时重定向我的幽灵应用程序。我发现了this两年的帖子并尝试更新代码。我在第一个 router.get (管理员路由)之前插入了这个片段,但它不起作用。这样做的正确方法是什么? Ghost版本是0.7.4。

// 301 redirect from www to non-www
router.get('/*', function(req, res) {
    if(req.headers.host.match(/^www/) !== null) redirect301(res, 'http://' + req.headers.host.replace(/^www\./, '') + req.url);
});

0 个答案:

没有答案