我已经创建了云前端分布并将 lambda 附加到触发器
`Event type: viewer-requestPath pattern: something/index.html`
Event type: origin-requestPath pattern: something/index.html
根据我的 lambda,当我点击端点时,它会重定向到我想要重定向的页面。
但我无法在任何地区看到我的 lambda 日志。
它也没有显示调用计数。
有人遇到过这个问题吗??
这是我的 lambda 代码
'use strict';
exports.handler = (event, context, callback) => {
/*
* Generate HTTP redirect response with 302 status code and Location header.
*/
console.log('event',event);
const response = {
status: '302',
statusDescription: 'Found',
headers: {
location: [{
key: 'Location',
value: 'http://<domainname>/something/root.html',
}],
},
};
callback(null, response);
};