rondog Posted December 13, 2010 Share Posted December 13, 2010 I have a dynamic URL that looks like this: http://mysite.com/?do=video&id=23,15,116 I would like the URLs displayed as: http://mysite.com/video/23/15/116 but cannot figure out the rewrite rule. Any help would be appreciated! Quote Link to comment https://forums.phpfreaks.com/topic/221529-help-with-rewite-rule/ Share on other sites More sharing options...
strago Posted January 22, 2011 Share Posted January 22, 2011 Options +FollowSymLinks +Indexes RewriteEngine on RewriteBase / RewriteRule ^video/([^.]+)/([^.]+)/([^.]+)$ index.php?do=video&id=$1,$2,$3 [L] Quote Link to comment https://forums.phpfreaks.com/topic/221529-help-with-rewite-rule/#findComment-1163463 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.