gpt4 book ai didi

Apache 重写到其他目录(如果那里存在文件)

转载 作者:行者123 更新时间:2023-12-04 18:18:19 25 4
gpt4 key购买 nike

我的目录如下所示:

/assets
/images
/2011
/2012
/images-hq
/2011
/2012

在 html 文件中,每个图像都有一个标签,例如:

<img src="/assets/images/2012/example.jpg" />

我想检查 images-hq 文件夹中是否存在相同的图像,如果存在,我想将该图像发送给用户。

示例:

/assets/images/2012/example.jpg to /assets/images-hq/2012/example.jpg

IF/assets/images-hq/2012/example.jpg 存在,如果不存在,则提供原始文件。

最佳答案

我尝试这样做并且似乎有效:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} (.*)/[a-z]+/(.+)\.(gif|jpe?g|png)$
RewriteCond %1/images-hq/%2.%3 -f
RewriteRule (.*)/[a-z]+/(.+)\.(png|jpg|jpeg)$ %1/images-hq/%2.%3 [L]

我基于this solution

关于Apache 重写到其他目录(如果那里存在文件),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11262148/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com