Authored by 王水玲

修改未登录跳转问题

... ... @@ -19,7 +19,7 @@ const _ = require('lodash');
*/
const safeRedirect = (uri) => {
let formalUrl = url.parse(uri); // 匹配标准的URL
let informalUrl = uri.match(/^\/\/(.+)/); // 尝试匹配 '//' 开头的不规范的URL
let informalUrl = uri.match(/^\/\/(.*?)\//); // 尝试匹配 '//' 开头的不规范的URL
let matchFunc;
if (formalUrl.protocol) {
... ...