waynew Posted October 13, 2008 Share Posted October 13, 2008 Well, I can honestly say that I know very little about mod rewrites. I have a url like so: beboskinszone.com?bebo-skin=NAMEOFSKIN How could I get that to look more like: beboskinszone.com/NAMEOFSKIN Also, could anyone point me towards a good beginners guide to mod rewrites. It looks daunting from the outside. Link to comment https://forums.phpfreaks.com/topic/128157-solved-something-simple/ Share on other sites More sharing options...
waynew Posted October 13, 2008 Author Share Posted October 13, 2008 Actually; how could I make the URL like so: beboskinszone.com/bebo-skin/nameofskin Link to comment https://forums.phpfreaks.com/topic/128157-solved-something-simple/#findComment-663824 Share on other sites More sharing options...
JasonLewis Posted October 13, 2008 Share Posted October 13, 2008 Hmmm, been a while since I've used mod_rewrite. It's basically regular expressions, from memory. Try this: # Turn the RewriteEngine on. RewriteEngine on # Now write your rule RewriteRule ^bebo-skin/([^/\.]+)?$ ?bebo-skin=$1 [L] Link to comment https://forums.phpfreaks.com/topic/128157-solved-something-simple/#findComment-663835 Share on other sites More sharing options...
waynew Posted October 13, 2008 Author Share Posted October 13, 2008 Hey Project. Thanks for the help. Still seems to be a problem though. One link example is: http://beboskinszone.com/bebo-skin.php?bebo-skin=90s-Kid Hoping to have: http://beboskinszone.com/bebo-skin/90s-Kid I added what you gave me to my .htaccess but no luck. Thanks anyway. Link to comment https://forums.phpfreaks.com/topic/128157-solved-something-simple/#findComment-663844 Share on other sites More sharing options...
JasonLewis Posted October 13, 2008 Share Posted October 13, 2008 Yeah try this, I didn't know what the name of your php file was. # Turn the RewriteEngine on. RewriteEngine on # Now write your rule RewriteRule ^bebo-skin/([^/\.]+)?$ bebo-skin.php?bebo-skin=$1 [L] Then just go to http://beboskinszone.com/bebo-skin/90s-Kid and it'll link to http://beboskinszone.com/bebo-skin.php?bebo-skin=90s-Kid Link to comment https://forums.phpfreaks.com/topic/128157-solved-something-simple/#findComment-663861 Share on other sites More sharing options...
waynew Posted October 13, 2008 Author Share Posted October 13, 2008 Thanks a million Project. Link to comment https://forums.phpfreaks.com/topic/128157-solved-something-simple/#findComment-663868 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.