I am in process of changing a site to .net. At present the site is designed in java. Already 500+ pages have already been indexed by search engine. Now I need to find a solution to redirect the old .jhtm pages to .aspx. Any views? Please help!
If your hosted on an Apache web server you likely have access to Mod Rewrite. If you are hosted on Apache AND the ONLY thing that changed in your URL is the file extension then adding the following to the bottom of your .htaccess in the root folder of your web should work: RewriteRule ^(.*).jhtm$ http://www.example.com/$1.aspx [R=301,L]