marianokow
New Member
I'm sure the answer to this is obvious but: I'm using Aptana Studio 3 and XAMPP on Mac OSX. Someone sent me a web app so I could load it up but I'm running into the following issues:1) While XAMPP intro pages loads up fine with just "localhost" using port 80, all my other projects will only load using 127.0.0.1:80202) Linked JS & CSS in the web app are written like this:\[code\]<script src="http://stackoverflow.com/js/controllers.js"></script>\[/code\]But I get 404; for Apache to find it I need to remove the first '/' so it looks like this:\[code\]<script src="http://stackoverflow.com/questions/14076398/js/controllers.js"></script>\[/code\]I would like to understand what's happening here because I can't (don't think I should have to if I do it correctly) remove all the beginning '/' for the linked files.Incidentally, I have set my server config to use a base URL and append project name. The only thing that works is when I use 127.0.0.1:8020. I've never had this happen on my Windows machine.