On the server the directories are case senestive. Is there an easy way to handle a user entering in say an all lowercase name like mysub and it take them to mySub anyway?
Bret Lanius
Bret Lanius
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?php
header("Location: " . strtolower($HTTP_ENV_VARS['REQUEST_URI']) . $HTTP_ENV_VARS['QUERY_STRING']);
?>