I use urls like
http://example.com/video.php?v=foo-bla
but i want this
http://example.com/video/foo-bla.html
i'm trying this code..
RewriteEngine On
RewriteRule videos/([-A-Za-z0-9]+)/? video.php?v=$1 [NC]
I use urls like
http://example.com/video.php?v=foo-bla
but i want this
http://example.com/video/foo-bla.html
i'm trying this code..
RewriteEngine On
RewriteRule videos/([-A-Za-z0-9]+)/? video.php?v=$1 [NC]