JeVic
JeVic

Reputation: 681

Htaccess Redirect Image in Folder to another URL

I have created a redirect but it doesnt seem to work

I tried both approach below

1st redirect

Redirect 301 /images/Dog%food-energy.jpg http://www.dogfoodenergy.com/ProductDetails.asp?323

2nd redirect

RewriteCond %{QUERY_STRING} ^Dog%20food-energy\.jpg$
RewriteRule ^images/$ http://www.dogfoodenergy.com/ProductDetails.asp?323 [R=301,L]

I have atleast 50 different to be redirected to different url as well. You'll also notice that the image has a space which is converted to %20 when paste on the address bar.

Upvotes: 1

Views: 943

Answers (1)

anubhava
anubhava

Reputation: 784898

You can use this code in your DOCUMENT_ROOT/.htaccess file:

RewriteEngine On

RewriteRule "^images/Dog food-energy.jpg" http://www.dogfoodenergy.com/ProductDetails.asp?323 [L,NC,NE,R=302]

Upvotes: 1

Related Questions