Reputation: 1410
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
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