Vercel:如何阻止读取重要文件

时间:2021-05-13 08:46:39

标签: .htaccess server vercel

我想阻止一些文件,以便没有用户可以访问它们。作为文件/文件夹 css, js, sass ...

我找到了 vercel 文档中关于服务器配置的一部分。但是,我找不到任何方法来阻止这些文件。

它有重定向,但需要做很多工作。

到目前为止这是我的 json

{
    "cleanUrls": true,
    "trailingSlash": false,
    "rewrites": [
        { "source": "/inicio", "destination": "https://blog-semnome-9ui4b0xed-gobsruiz.vercel.app/html/index" },
        { "source": "/blog", "destination": "https://blog-semnome-9ui4b0xed-gobsruiz.vercel.app/html/blog" },
        { "source": "/contato", "destination": "https://blog-semnome-9ui4b0xed-gobsruiz.vercel.app/html/contact" },
        { "source": "/jogos-gratis-2021-pt1", "destination": "https://blog-semnome-9ui4b0xed-gobsruiz.vercel.app/html/posts/jogos-gratis-2021-pt1" }
    ]
}

有人知道有什么方法可以屏蔽吗?

https://vercel.com/docs/configuration

0 个答案:

没有答案