Hello, I've got a bit of a problem with mod_rewrite.
I am rewriting urls that look like this:
presents-cerruti.php?code=N4359&descripton=some_present
into URL's that look like this:
presents-cerruti/N4359/some_present
with this rules:
RewriteEngine On
RewriteRule presents-cerruti/(.)/(.) /presents-cerruti.php?code=$1&description=$2
The problem is, when I click the link, the images dont't work anymore, because the URL is rewritten and the images can't be found.
How can I avoid this?