htaccess 捕获所有图像请求并重定向到正确的文件夹

发布于 2024-11-10 04:41:29 字数 503 浏览 0 评论 0原文

我如何将所有图像请求重定向到特定文件夹,因为我的网站有一些 mod 重写以获得更好的 url,有时当找不到图像时,它由主访问路由处理,这是错误的,因为 htaccess 应该正确重定向。

我已经得到:

Options +FollowSymlinks
RewriteEngine on

RewriteBase /

RewriteRule ^$                        index.php  [L]
RewriteCond %{REQUEST_FILENAME}       !-f
RewriteCond %{REQUEST_FILENAME}       !-d

RewriteRule ^([^/]+)/?([^/]*)/?/?([^/]*)/?([^/]*)$ index.php?account=$1&task=$2&object_id=$3&app_type=$4

所有图像请求都应路由到 /public/images/

提前致谢。

how do i redirect all image requests to a specific folder, since my site has some mod rewriting for nicer urls, sometimes when an image is not found it is handled by the main access route, which is wrong, since htaccess should redirect properly.

i already got:

Options +FollowSymlinks
RewriteEngine on

RewriteBase /

RewriteRule ^$                        index.php  [L]
RewriteCond %{REQUEST_FILENAME}       !-f
RewriteCond %{REQUEST_FILENAME}       !-d

RewriteRule ^([^/]+)/?([^/]*)/?/?([^/]*)/?([^/]*)$ index.php?account=$1&task=$2&object_id=$3&app_type=$4

all image requests should be routed to /public/images/

Thanks in advance.

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

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

发布评论

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

评论(1

甜嗑 2024-11-17 04:41:29
  RewriteRule (.*)\.(gif|jpg|png)$ /public/images/$1.$2 [R,L]
  RewriteRule (.*)\.(gif|jpg|png)$ /public/images/$1.$2 [R,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文