We have a site that\'s always been deployed on a windows server with no case sensitivity issues. However we now need to deploy to Linux and know the site has lots of incorrectl
The best way is to fix your urls, alternatively, you can add the following rewrite rules to your .htaccess
RewriteEngine on RewriteRule ^[A-Z]+.*\.html$ lowercase.php [L]
and within lowercase.php (change according to your technology)
Ensure that all your filenames are lowercased.