ShaolinF Posted October 16, 2007 Share Posted October 16, 2007 Hi Guys, I was on my site when I decided to add a forward slash at the end of my index page and all the css dissapeared. Does anyone know why this happens and how one can resolve it ? Link to comment https://forums.phpfreaks.com/topic/73405-at-the-end-of-weblinks/ Share on other sites More sharing options...
derwert Posted October 21, 2007 Share Posted October 21, 2007 Are you using any $_SERVER variables in the code? Link to comment https://forums.phpfreaks.com/topic/73405-at-the-end-of-weblinks/#findComment-374642 Share on other sites More sharing options...
ShaolinF Posted October 21, 2007 Author Share Posted October 21, 2007 Well Im using $_SESSION if thats a server variable.. Link to comment https://forums.phpfreaks.com/topic/73405-at-the-end-of-weblinks/#findComment-375033 Share on other sites More sharing options...
derwert Posted October 21, 2007 Share Posted October 21, 2007 You haven't provided any information other than your problem, code perhaps? Since I'm not going to try to guess anymore add this to the top of your script. if(isset($_SERVER['PATH_INFO'])){ header('Location: http://'.$_SERVER['HTTP_HOST'].'/'.$_SERVER['SCRIPT_NAME']); exit(); } Link to comment https://forums.phpfreaks.com/topic/73405-at-the-end-of-weblinks/#findComment-375048 Share on other sites More sharing options...
Daniel0 Posted October 22, 2007 Share Posted October 22, 2007 Are you using clean URLs? If so, then use absolute paths to your CSS files. E.g. CSS file is at /stylesheets/default.css (referenced as stylesheets/default.css in a link tag) URL (before): http://example.com/articles - link tag points to http://example.com/stylesheets/default.css URL (new): http://example.com/articles/ - link tag points to http://example.com/articles/stylesheets/default.css (doesn't exist) I hope you understand my example. Link to comment https://forums.phpfreaks.com/topic/73405-at-the-end-of-weblinks/#findComment-375522 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.