Is there any method to redirect .htm files to their respective .html files? and vice versa.. is there any .htaccess or any other methods? Please help me..
Yes, using mod_rewrite as suggested above. However, you can't have it both ways, as that'd just be an infinite loop?
Ya, I know that It wont work both ways simultaneously.. I just wanted to know whether it can be converted from one form to other OR is it a one way algorithm like... Where can I get the code for that or tutorials to do it?
Here's an untested sample: RewriteEngine On RewriteRule ^(.*?)\.htm$ $1.html [R=301,L] Code (markup): That should redirect .htm to .html, if not, play around a bit. Jay