I am using a WAMP stack at home to do most of my coding, and have hired a hosting company that uses a LAMP stack to host my data.
One of the most annoying things that this is causing me is that images in my html need to be in the form of <img src = 'images/subdirectory/file.jpg'>
to show properly on my windows box, but <img src = '**/**images/subdirectory/file.jpg'>
to show properly on my hosted (live) page. Is there a way I can set up my WAMP at home to require the same path style as the LAMP?
Also, on a side note, I've run in to issues with Linux pats/files being case sensitive and windows not causing confusion.