mrbuter Posted June 16, 2009 Share Posted June 16, 2009 This is so simple but I am having a hard time with it. Almost there! I want to have: www.example.com/user/me display what is currently shown in the ugly url: www.example.com/index.php?page=users&action=view&id=me I have this in htaccess: Options +FollowSymLinks RewriteEngine on RewriteRule user/(.*) index.php?page=users&action=view&id=$1 RewriteRule user/(.*)/ index.php?page=users&action=view&id=$1 And it works....except now all the images are broken. Anyone know how I can fix the images, or rather, stop images from getting redirected? Quote Link to comment https://forums.phpfreaks.com/topic/162443-rewriting/ Share on other sites More sharing options...
ldougherty Posted June 16, 2009 Share Posted June 16, 2009 You should change your images to use full paths rather than relative paths, this is the only way for them to display properly with the rewrite rule in place. Quote Link to comment https://forums.phpfreaks.com/topic/162443-rewriting/#findComment-857444 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.