Syed Sajid
Syed Sajid

Reputation: 1410

HTACCESS image url rewrite

I have this image

http://domain.com/images/2.png

I want this URL

http://domain.com/images/sale-item.png

to open above image, NO Redirect please.

In short the URL http://domain.com/images/sale-item.png will open this image http://domain.com/images/2.png

Upvotes: 0

Views: 54

Answers (1)

anubhava
anubhava

Reputation: 785146

If you want it to be in DocumentRoot/.htaccess then use this as first rule:

RewriteEngine On
RewriteBase /

RewriteRule ^(_images/corners)/sale-item\.png/?$ $1/2.png [L,NC]

Upvotes: 1

Related Questions