chapeen Posted December 30, 2008 Share Posted December 30, 2008 I'm a noobie with url rewriting. this is what I have in my .htaccess file RewriteEngine On RewriteRule ^page/([^/\.]+)/?$ index.php?page=$1 When I click on one of my links e.g. Home, the page shows up but with no css. Can someone help me please.? ----------------------------------------- Soory guys just found the answer by searching !! Link to comment https://forums.phpfreaks.com/topic/138886-css-not-loading/ Share on other sites More sharing options...
Maq Posted December 30, 2008 Share Posted December 30, 2008 I don't think this is a mod rewrite problem. Seems like a path problem... Does the CSS show up when you don't use that RewriteRule? Link to comment https://forums.phpfreaks.com/topic/138886-css-not-loading/#findComment-726573 Share on other sites More sharing options...
bubbasheeko Posted January 4, 2009 Share Posted January 4, 2009 Had this problem today. Put the full path to the css and you will be fine - you may have to do the same thing for image paths too. IE. http://www.example.com/_css/style.css http://www.example.com/images/image.jpg At least that is what I did to fix it. Link to comment https://forums.phpfreaks.com/topic/138886-css-not-loading/#findComment-729220 Share on other sites More sharing options...
Maq Posted January 5, 2009 Share Posted January 5, 2009 Put the full path to the css and you will be fine Absolute paths will work but, are not the best choice. I always find creating a relative root path is the best way. If you switch servers or are pushing something to a production server you could have the wrong path. Link to comment https://forums.phpfreaks.com/topic/138886-css-not-loading/#findComment-729892 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.