Home › Forums › Other › Help with rewrite rule › Reply To: Help with rewrite rule
August 30, 2013 at 8:52 am
#148609
Participant
Nevermind. I was able to do what I wanted to:
RewriteEngine on
images
RewriteRule ^(.+).jpg$ index.php?file=$1.jpg [L]
RewriteRule ^(.+).gif$ index.php?file=$1.gif [L]
RewriteRule ^(.+).png$ index.php?file=$1.png [L]
docs
RewriteRule ^(.+).pdf$ index.php?file=$1.pdf [L]
RewriteRule ^(.+).doc$ index.php?file=$1.doc [L]
…
I can add only the files I want to behave like this. :)