I am currently developing a very simple cms using wampserver and I'm planning to upload it to my reserverd server once it's done. the other day when I was debugging my code through the remote server i got my page loaded without any style or image. I reviewed and simply deleted some '/' and that worked just fine. For example I changed URLs like this: before change:
<link rel="stylesheet" href="/css/styles.css"/>
After change:
<link rel="stylesheet" href="css/styles.css"/>
When I applied these new URLs to my local project, once again I faced pages without styles or images or js or whatever...what should I do?