带有 .htaccess 的动态 jpg url
我希望根据 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样:
注意:如果您需要扩展,请使用
$2
like this:
note: if you need the extension you use
$2