I have never worked with .htaccess before and was going through the documentation of Redirect Directive here : http://httpd.apache.org/docs/2.2/mod/mod_alias.html#redirect .I wanted a 301 redirect from http://localhost/testing/about.html to http://localhost/testing/about-me.html . I created a .htaccess file in http://localhost/testing/ like below :
<IfModule mod_rewrite.c>
RewriteEngine On
Redirect 301 /about.html http://localhost/testing/about-me.html
</IfModule>
The redirect is not working . I am sure I am doing something wrong . Could somebody please tell me why the redirect is not working ?