Htaccess - 带图像的RewriteBase

时间:2014-04-22 16:32:57

标签: apache .htaccess mod-rewrite

我正在用htaccess做点儿乐趣。我正在将图像上传到某个目录,当我通过浏览器访问此图像时,它会重定向到另一个正确显示此图像的页面:

RewriteEngine On
RewriteBase /
RewriteRule ^(.*)\.(jpg|png|jpeg|gif)$ media/show/index.php?image=$1.$2 [NC,L]

但由于这个htaccess,我无法在该文件中访问此图像。我的意思是,在index.php上,如果我尝试<img src="../image.jpg"/>它没有加载。可能是因为这个htaccess。

示例: http://lucasveiga.com/media/m4exleFWz4.jpg

我该怎么办?

谢谢!

0 个答案:

没有答案