ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    Next开启地址兼容模式Trailing Slash

    Jan 30, 20232 min read

    将 /about/ 重定向到 /about

    配置如下

    //next.config.js
    module.exports = {
      trailingSlash: true,
    }
    

    配置完成后

    /about 会重定向到 /about/

    相关文章

    warning ../package.json: No license field

    The `package.json` file lacks a `license` field, which is crucial for clarifying the project's licensing terms; to add it, select an appropriate license and insert it as a string value in the file.

    lsof 查看8080端口占用对应的进程

    使用lsof命令查看8080端口占用的进程信息。

    什么是FDIC 保险?

    FDIC是美国联邦政府设立的保险机构,保障每位存款人每个账户最高25万美元的存款安全,以防银行破产。

    解决 "发送消息出错:Bad Request: can't parse entities: Can't find end of the entity starting at byte offset 663"

    解决消息中无法识别实体导致的错误,可尝试删除实体、检查格式、更新客户端或联系官方支持。

    什么是HTTPS Pinning>

    HTTPS Pinning是一种网络安全机制,通过在客户端内置证书公钥或指纹,确保通信双方验证和授权,防止中间人攻击和证书欺骗,增强通信安全性。