.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
Post a Comment