This is almost certainly because you are not using an absolute path to your logo, so when the re-written URL goes off into a virtual sub-directory, the browser is looking for the logo in the wrong place. For example, if you currently have something like this:
<img src='logo.jpg'>
...and your logo is in the top level directory of your site; you would need to put a / infront, so that the path becomes absolute - like this:
Hi Darren,
This is almost certainly because you are not using an absolute path to your logo, so when the re-written URL goes off into a virtual sub-directory, the browser is looking for the logo in the wrong place. For example, if you currently have something like this:
<img src='logo.jpg'>
...and your logo is in the top level directory of your site; you would need to put a / infront, so that the path becomes absolute - like this:
<img src='/logo.jpg'>
Hope this helps!
Cheers,
David.