带有 .htaccess 的动态 jpg url

发布于 2024-12-13 22:22:02 字数 281 浏览 0 评论 0原文

我希望根据 url 中的文件名使用 htaccess 动态地将图像提供给网页。通常,我在整个网站中使用嵌套目录结构来提供基于伪目录名称的动态 URL。在这种情况下,我只想查询文件名(无扩展名)并将其提供给 PHP 脚本,以便:

/images/foo.jpg

变得

/images/index.php?image=foo

同时也让该目录中现有的 jpg 图像得到服务。我确信这很容易,因为我已经能够使用 htaccess 完成一些非常酷的事情,但还不是这个。谢谢。

I am looking to dynamically serve images to web pages with htaccess based on the filename in the url. Normally, I use a nested directory structure throughout my website to serve a dynamic url based on the pseudo directory names. In this case, I would just like to query the file name (sans extension) and serve it to a PHP script so that:

/images/foo.jpg

becomes

/images/index.php?image=foo

while also let existing jpg images in this directory be served. I am sure it is easy, as I have been able to accomplish some pretty cool things with htaccess, but just not this one yet. Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

匿名的好友 2024-12-20 22:22:02

像这样:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^images/(.*)\.(jpg|png|jpeg|gif)$ /images/index.php?image=$1 [NC,L]

注意:如果您需要扩展,请使用 $2

like this:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^images/(.*)\.(jpg|png|jpeg|gif)$ /images/index.php?image=$1 [NC,L]

note: if you need the extension you use $2

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文