phpSensei Posted April 20, 2008 Share Posted April 20, 2008 Everytime I enter this address in my URL "localhost/project540/archive", the archive.php page shows just fine based on this script .htaccess Options +FollowSymLinks Options +Indexes RewriteEngine On RewriteRule ^archive$ archive.php But when I change it to Options +FollowSymLinks Options +Indexes RewriteEngine On RewriteRule ^archive/(.+)$ archive.php?id=$1 and I put "localhost/project540/archive/3" The Page Tables, Css, and structure just disappears, and its only the text remaning with some links. Any idea why this may be? Excuse me also for this noob question, I havn't used this method in awhile. Quote Link to comment Share on other sites More sharing options...
Northern Flame Posted April 22, 2008 Share Posted April 22, 2008 try replacing RewriteRule ^archive/(.+)$ archive.php?id=$1 with RewriteRule ^archive/([^/\.]+)/?$ archive.php?id=$1 [L] Quote Link to comment Share on other sites More sharing options...
phpSensei Posted April 22, 2008 Author Share Posted April 22, 2008 Nah, it was the images, and how I was including the CSS. See, the links kept breaking so I did <base href="localhost/project/" /> Quote Link to comment 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.