I recently did a code conversion where we moved from ASP code running on IIS to PHP running on Apache.
In a LOT of cases, the file calls are exactly what they used to be with .php in place of .asp, and all URL parameters now being lowercase.
Is there a magic way in Apache to make the name redirect happen automatically without my users getting 404 errors?
For example:
/test/home.asp
becomes:
/test/home.php
and:
/test/product.asp?ID=MB1234
becomes:
/test/product.php?id=MB1234
Any help is appreciated. And if you can tell me how to do it in Webmin, that would be cooler!
Long live PHP