Reputation: 2187
I'm running my test site on localhost.
when i load it with URL:
localhost/projects/forums/index.php
It looks like this (As Expected)
But when
i give URL:
localhost/project/forums/index.php/ ( / after index.php)
Css don't load.
looks like this.
Can anybody tell me how to tackle this?
i have seen the same issue on many websites.
Upvotes: 0
Views: 85
Reputation: 943936
Either:
/
on the end of the URL of the page <link>
s), use root relative URLs instead of current document relative URLs (i.e. start the URLs with a /
)I'd use all three myself.
Upvotes: 2