Authored by 王水玲

修改未登录跳转问题

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