izbryte Posted September 11, 2012 Share Posted September 11, 2012 I'm VERY new to mod rewrite and am trying to get this sort of link: www.mydomain.com/fnamelname to call www.mydomain.com/career-profile/index.php?l=fnamelame I have THAT part of it working fine but my stylesheet and images are not showing up. I'm using absolute links but I'm obviously doing something wrong. My .htaccess file looks like this: RewriteEngine On RewriteRule ^([^/]*)$ /career-profile/index.php?l=$1 [L] Can someone please help me? Link to comment https://forums.phpfreaks.com/topic/268248-mod-rewrite-images-styles-are-gone/ Share on other sites More sharing options...
requinix Posted September 11, 2012 Share Posted September 11, 2012 The rewriting should only occur for things that don't exist. RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([^/]*)$ /career-profile/index.php?l=$1 [L] Link to comment https://forums.phpfreaks.com/topic/268248-mod-rewrite-images-styles-are-gone/#findComment-1376912 Share on other sites More sharing options...
izbryte Posted September 11, 2012 Author Share Posted September 11, 2012 Thank you! You are a genius! Link to comment https://forums.phpfreaks.com/topic/268248-mod-rewrite-images-styles-are-gone/#findComment-1376915 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.