When developing a new website, we often produce files with the .aspx file extension. However, when creating a new website we have to 301 all the existing pages to the corresponding page.
For example
Sports.html -> Sports.aspx [301 redirect]
Corporate_Events.php -> Corporate.aspx [301 redirect]
We are in the process of producing a site, but need to redirect 300 html files. The pain is that the redirects are not just the same file names with a different extention.
Currently we have to set up these manually on a file-by-file basis and it is not efficient. I believe that using Apache, you can place these redirects in a .htaccess file?
Is there an equivalent method or system we could implement in IIS without having to manually go through every file?
Thanks,
Martin