Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other Help with rewrite rule Reply To: Help with rewrite rule

#148609
XaviJr
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. :)