1

I would like to redirect via htaccess all images of a sub folder to my home page. How can I do this?

Example: http://www.volamondo.it/images/132.jpg --> http://www.volamondo.it/

  • Possible duplicate of [301 redirect .htaccess](http://stackoverflow.com/questions/4037467/301-redirect-htaccess) – hotzst Jan 13 '16 at 09:24

1 Answers1

0

Here is your .htaccess

RewriteEngine On
RewriteBase /
RewriteRule ^images/.* / [R=301,L]
Florian Lemaitre
  • 5,905
  • 2
  • 21
  • 44
  • I invite you to accept this answer if you want to close this question. [How does accepting an answer work ?](http://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work) – Florian Lemaitre Jan 13 '16 at 16:13