You are here:  » Mod Rewrite Issue

Support Forum



Mod Rewrite Issue

Submitted by webie on Wed, 2007-04-25 18:24 in

I would like enable rewrite but for some reason when enabled I loose my logo image and icon images I am not sure why I checked and all seems fine.

Just wondering if anybody else has ahd the same problem

Many Thanks

Darren

Submitted by support on Thu, 2007-04-26 09:00

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.