Reputation: 1332
I would like to redirect all my pdf files from a specific folder (here toto
) to the root of another folder (here tata
), e.g.:
www.mywebsite/toto/fic1.pdf -> www.mywebsite/tata/
www.mywebsite/toto/fic2.pdf -> www.mywebsite/tata/
www.mywebsite/toto/fic3.pdf -> www.mywebsite/tata/
www.mywebsite/toto/fic4.pdf -> www.mywebsite/tata/
www.mywebsite/toto/sousDossier/fic4.pdf -> www.mywebsite/tata/
I've written one line per file but it is not pretty ...
RedirectPermanent /toto/fic1.pdf http://www.mywebsite/tata/
Upvotes: 0
Views: 244
Reputation: 784868
Enable mod_rewrite and .htaccess through httpd.conf
and then put this code in your .htaccess
under DOCUMENT_ROOT
directory:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteRule ^toto/[^.]+\.pdf$ tata/ [R=301,L,NC]
Upvotes: 0