.htaccess - Htaccess redirection with directory to querystring -


below redirect htaccess when browse example.net/video/1 , redirect me example.net/abc/redirect.php

options +followsymlinks  rewriteengine on rewritecond %{request_uri} /picture?$ rewriterule ^ http://example.net/abc/redirect.php [l,r=301] 

erm if need like... when browse thru link http://example.net/picture/1 or http://example.net/picture/2

it redirect me link query string like

http://example.net/abc/redirect.php?picture=1  http://example.net/abc/redirect.php?picture=2 

thanks! : )

rewriterule ^picture/([\d]+) /redirect.php?picture=$1 [l,r=301] 

Comments

Popular posts from this blog

php - mySql Join with 4 tables -

css - Text drops down with smaller window -

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -