I want to make a existing site seo friendly URLs. I have almost there and rewrite all links. But when it comes to 301 redirect old URL's to new ones, where I got stuck. Here below how I have done it.
RewriteEngine On
RewriteRule ^video_gallery video_gallery.php
Redirect /video_gallery.php http://site.com/video_gallery
So as illustrated above I have rewritten the video_gallary.php to video_gallary and now I want to redirect all requests with http://site.com/video_gallery.php to http://site.com/video_gallery But its now working properly as above. A lil help here please.
Thank you