yonta Posted April 22, 2006 Share Posted April 22, 2006 HiI want to turn this urlwww.example.com/blog/index.php?action=Projects or www.example.com/blog/index.php?action=Project&id=1intowww.example.com/blog/index/Projects or www.example.com/blog/index/Project/1.So far reading some tutorials i've got this (based on the tutorial at phpfreaks on mod_rewrite)RewriteEngine OnRewriteRule ^index/(.*).php /index.php?action=$1RewriteRule ^index/(.*)/(.*).php /index.php?action=$1&id=$2but it isn't working. I also tried this, thinking maybe it was because the site's inside the blog folderRewriteEngine OnRewriteRule blog/^index/(.*).php /index.php?action=$1RewriteRule blog/^index/(.*)/(.*).php /index.php?action=$1&id=$2but it didn't work either. I put the .htaccess file inside the blog folder.Can anybody help? Please?Thanx :)Sofia Link to comment https://forums.phpfreaks.com/topic/8112-friendly-url-trouble/ Share on other sites More sharing options...
yonta Posted April 22, 2006 Author Share Posted April 22, 2006 Help please... some pointers...Sofia[!--quoteo(post=367443:date=Apr 22 2006, 08:40 AM:name=yonta)--][div class=\'quotetop\']QUOTE(yonta @ Apr 22 2006, 08:40 AM) [snapback]367443[/snapback][/div][div class=\'quotemain\'][!--quotec--]HiI want to turn this urlwww.example.com/blog/index.php?action=Projects or www.example.com/blog/index.php?action=Project&id=1intowww.example.com/blog/index/Projects or www.example.com/blog/index/Project/1.So far reading some tutorials i've got this (based on the tutorial at phpfreaks on mod_rewrite)RewriteEngine OnRewriteRule ^index/(.*).php /index.php?action=$1RewriteRule ^index/(.*)/(.*).php /index.php?action=$1&id=$2but it isn't working. I also tried this, thinking maybe it was because the site's inside the blog folderRewriteEngine OnRewriteRule blog/^index/(.*).php /index.php?action=$1RewriteRule blog/^index/(.*)/(.*).php /index.php?action=$1&id=$2but it didn't work either. I put the .htaccess file inside the blog folder.Can anybody help? Please?Thanx :)Sofia[/quote] Link to comment https://forums.phpfreaks.com/topic/8112-friendly-url-trouble/#findComment-29672 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.