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! 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] Link to comment https://forums.phpfreaks.com/topic/221529-help-with-rewite-rule/#findComment-1163463 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.