Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 nginx 服务器上有很多可用的照片,为了将来证明,我决定将它们嵌套到文件夹中。结构很简单,每张图片都有一个 6 位或更多位的 id,所以我决定每 3 个字符拆分一次 id,使每个部分成为一个文件夹,并将特定于该 id 的所有图像放在最后一个文件夹中。
这很好用,但我想让访问图像更容易,我想到了可以制定一个只接受 id 的重写规则(例如 /1234567/9.jpg)并将其重写为正确的路径(/123/456/7/9.jpg)。 这可能与 nginx 的重写功能有关吗?