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. Link to comment https://forums.phpfreaks.com/topic/102039-layout-messes-up-on-rewrite/ 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] Link to comment https://forums.phpfreaks.com/topic/102039-layout-messes-up-on-rewrite/#findComment-523658 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/" /> Link to comment https://forums.phpfreaks.com/topic/102039-layout-messes-up-on-rewrite/#findComment-524265 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.