Welcome Guest, Not a member yet? Register   Sign In
rewrite URL to lower case on godaddy
#5

[eluser]CroNiX[/eluser]
You must not have the RewriteMap apache module installed, which is required to do what you are wanting via htaccess.

This can easily be done in a few lines at the top of your index.php, before CI loads.

Code:
$server_url = $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
if ($server_url !== strtolower($server_url))
{
  header('Location: http://' . strtolower($server_url), TRUE, 301);
}
Then it should work on any server.


Messages In This Thread
rewrite URL to lower case on godaddy - by El Forum - 07-31-2012, 08:34 AM
rewrite URL to lower case on godaddy - by El Forum - 07-31-2012, 10:15 AM
rewrite URL to lower case on godaddy - by El Forum - 07-31-2012, 10:29 AM
rewrite URL to lower case on godaddy - by El Forum - 07-31-2012, 10:31 AM
rewrite URL to lower case on godaddy - by El Forum - 07-31-2012, 11:16 AM
rewrite URL to lower case on godaddy - by El Forum - 07-31-2012, 07:14 PM
rewrite URL to lower case on godaddy - by El Forum - 07-31-2012, 07:58 PM
rewrite URL to lower case on godaddy - by El Forum - 08-01-2012, 08:25 AM



Theme © iAndrew 2016 - Forum software by © MyBB