.htaccess、mod_rewrite、带有目录和文件类型的正则表达式

发布于 2024-12-14 13:00:55 字数 373 浏览 0 评论 0原文

我想在以下条件下进行重写:

  1. 目录是 /images
  2. 文件具有 .jpg、.png 或 .gif 扩展名

我想重定向到以下内容

/images/?file=filename.extension

这不起作用:

RewriteRule /images/(.*\.jpg|png|gif) /images/?file=$1

示例:

/images/example.jpg => /images/?file=example.jpg

谢谢

I want to do a rewrite with the following conditions:

  1. Directory is /images
  2. file has a .jpg, .png or .gif extension

I want to redirect to the following

/images/?file=filename.extension

This is not working:

RewriteRule /images/(.*\.jpg|png|gif) /images/?file=$1

Example:

/images/example.jpg => /images/?file=example.jpg

Thanks

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

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

发布评论

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

评论(2

时光无声 2024-12-21 13:00:55

我认为你需要括号来对扩展进行分组。

/images/(.*\.(jpg|png|gif))

I think you need parens to group the extensions.

/images/(.*\.(jpg|png|gif))
风轻花落早 2024-12-21 13:00:55

在 .htaccess 文件中,路径被去掉了前导斜杠,因此您需要以 images/ 而不是 /images/ 开头。另外,您可以以 ^ 开头来匹配路径的开头,这样 /blahblah/images/something.gif 这样的路径就不会被重写。最后,您的 paren 将匹配 foo.jpg,但不匹配 foo.pngfoo.gif。试试这个:

RewriteRule ^images/(.+\.(jpg|png|gif)) /images/?file=$1

In the .htaccess file, the path is stripped of the leading slash so you need to start with a images/ instead of /images/. Also, you can start with a ^ to match the beginning of the path so that paths like /blahblah/images/something.gif won't get rewritten. Finally, your paren will match foo.jpg but not foo.png or foo.gif. Try this instead:

RewriteRule ^images/(.+\.(jpg|png|gif)) /images/?file=$1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文