0

我正在构建一个 LAMP 应用程序www.testing.com,并且我有一个图像 url www.testing.com/image/folderA/a.jpg

我想在 .htacess 中有一个重写规则,这样如果用户导航到 /image/foldera 中不存在的图像,他将被重定向到另一个带有 url 的图像www.testing.com/image/folderB/b.jpg

这是我的代码。

RewriteRule ^image/folderA/(.*\.(jpg|gif|png))$ http://%{SERVER_NAME}/image/folderB/b.jpg [R=404,L]

但是,这不起作用www.testing.com/image/folderA/a.jpg,因为应该返回图像,给出 404。知道为什么吗?

4

1 回答 1

0

使用 R 标志时,您需要牢记以下几点:

However, if a status code is outside the redirect range (300-399) then the substitution string is dropped entirely, and rewriting is stopped as if the L were used.

http://httpd.apache.org/docs/trunk/rewrite/flags.html#flag_r

这意味着您的重写规则正在删除替换字符串并将所有对指定文件的请求重定向到内置的 404 页面。

于 2013-06-12T23:31:04.677 回答