Neptunus Maris Posted March 29, 2008 Share Posted March 29, 2008 I know this is supposed to be in the Apache forum but no one's ever in there...really Anyways I'm doing a mode rewrite on a site like this: My URLs look like this: mysite.com/news/[newsID]/ (...so) mysite.com/news/3/ for instance... My .htaccess file is like this: RewriteEngine On RewriteRule news/([0-9]+)?.htm$ news.php?article=$1 [L] Now...the problem is, is that once I go to the page none of the CSS or HTML properties come through...no images nothing...how do I fix this? Thank you Quote Link to comment https://forums.phpfreaks.com/topic/98503-pages-with-mod_rewrite/ Share on other sites More sharing options...
AdRock Posted March 29, 2008 Share Posted March 29, 2008 Where are you doing the rewrite rule? On a machine using localhost at home for testing or on a hosted webserver? The reason i ask is becuase i tried enabling mod rewrite on my testing machine at home and i got the same problem Quote Link to comment https://forums.phpfreaks.com/topic/98503-pages-with-mod_rewrite/#findComment-504104 Share on other sites More sharing options...
Neptunus Maris Posted March 29, 2008 Author Share Posted March 29, 2008 Where are you doing the rewrite rule? On a machine using localhost at home for testing or on a hosted webserver? The reason i ask is becuase i tried enabling mod rewrite on my testing machine at home and i got the same problem On a hosted web server... Quote Link to comment https://forums.phpfreaks.com/topic/98503-pages-with-mod_rewrite/#findComment-504106 Share on other sites More sharing options...
mkoga Posted March 29, 2008 Share Posted March 29, 2008 Try changing the paths to css files and images to absolute paths. Quote Link to comment https://forums.phpfreaks.com/topic/98503-pages-with-mod_rewrite/#findComment-504118 Share on other sites More sharing options...
Neptunus Maris Posted March 29, 2008 Author Share Posted March 29, 2008 Try changing the paths to css files and images to absolute paths. I'll give that a try right now! Quote Link to comment https://forums.phpfreaks.com/topic/98503-pages-with-mod_rewrite/#findComment-504122 Share on other sites More sharing options...
Neptunus Maris Posted March 29, 2008 Author Share Posted March 29, 2008 It all works now with the absolute path Example: I would change this blah.php to /blah.php in urls Quote Link to comment https://forums.phpfreaks.com/topic/98503-pages-with-mod_rewrite/#findComment-504128 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.