作者 RuoYi

修复外链带端口出现的异常(I86J4B)

@@ -525,7 +525,7 @@ public class SysMenuServiceImpl implements ISysMenuService @@ -525,7 +525,7 @@ public class SysMenuServiceImpl implements ISysMenuService
525 */ 525 */
526 public String innerLinkReplaceEach(String path) 526 public String innerLinkReplaceEach(String path)
527 { 527 {
528 - return StringUtils.replaceEach(path, new String[] { Constants.HTTP, Constants.HTTPS, Constants.WWW, "." },  
529 - new String[] { "", "", "", "/" }); 528 + return StringUtils.replaceEach(path, new String[] { Constants.HTTP, Constants.HTTPS, Constants.WWW, ".", ":" },
  529 + new String[] { "", "", "", "/", "/" });
530 } 530 }
531 } 531 }