Im developing a php frame work and I am new to .htaccess rules. So I need to redirect url using .htaccess. Url is
http://localhost/rinocabs/index.php?/Galary/Image/
should be converted to this
http://localhost/rinocabs/Galary/Image/
in .htaccess file I include these rules
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^localhost/rinocabs/index.php?/Galary/Image/ [nc]
rewriterule ^(.*)$ http://localhost/rinocabs/Galary/Image/$1 [r=301,nc]
but its not working. Please Help.