I want to redirect to the url localhost/anno
to localhost/tut/anno
I referred this question
and wrote this .htaccess
rule
RewriteCond %{HTTP_HOST} ^(www\.)?localhost\anno$ [NC]
RewriteRule !^localhost/ /tut/anno%{REQUEST_URI} [L,NC]
But still i am getting 404 error.
What is the wrong i my rule ?