htaccess重定向但排除图像

时间:2011-12-27 21:26:24

标签: image .htaccess redirect

我正在尝试将htaccess重定向到文件,但无法显示图像。

我想将任何请求重定向到mydomain.com或www.mydomain.com到www.mydomain.com/test.html

这是我的htaccess文件的内容:

# Turn rewriting on
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_URI} !=/test.html
RewriteCond %{REQUEST_URI} !=*\.png$ [NC]
RewriteRule .* /test.html

我在test.html文件中有这行代码:

<img src="image.png" alt="My Image">

但是图像根本没有显示,我只是得到一张破碎的图像。我也试过使用绝对路径的图像,同样的事情。

3 个答案:

答案 0 :(得分:14)

尝试使用以下

替换.htaccess文件
# Turn rewriting on
Options +FollowSymLinks
RewriteEngine On
RewriteBase /

#if the request does not end with test.html or is not a .png
RewriteCond %{REQUEST_URI} !(test\.html|\.png)$ [NC]
# Rewrite it to test.html
RewriteRule .* /test.html  [L]

答案 1 :(得分:4)

这将排除各种类型的图像

#if the request does not end with .gif,.png or jpg 
RewriteCond %{REQUEST_URI} !(\.gif|\.jpg|\.png)$ [NC]
RewriteRule ^index.html$ index.php [NC] 

答案 2 :(得分:2)

尝试:

RewriteCond %{REQUEST_URI} !\.png$ [NC]

不熟悉!.前缀。查看RewriteCond Docs