in reply to catalyst/apache problem with non root request not able to serve images

The problem is probably that you use relative URLs in the HTML, so in /index.html an image static/foo.gif is mapped to /static/foo.gif, but in /category/index.html it is mapped to /category/static/index.html which doesn't exist.

You can avoid that by using absolute image pathes, like /static/foo.gif.

Replies are listed 'Best First'.
Re^2: catalyst/apache problem with non root request not able to serve images
by confused_elf (Novice) on Sep 18, 2007 at 15:25 UTC
    you are absolutely right, I feel so stupid now. I really thought that catalyst would handle that automatically. I should've thought about that. Thanks a lot though for the quick help, I appreciate it. Thankss confused elf