Welcome Guest, Not a member yet? Register   Sign In
Make url case insensitive
#1

[eluser]aryan_[/eluser]
In my CI application I want all urls case insensitive. Here's my folder structure

application/
system/
assets/
uploads/
index.php
.htaccess

And, here's my .htaccess code:

RewriteEngine On
RewriteBase /rag
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

What to do to access all file within "uploads/" and "assets/" case-insensitive?

Thanks!


Messages In This Thread
Make url case insensitive - by El Forum - 05-14-2010, 02:21 AM
Make url case insensitive - by El Forum - 05-14-2010, 02:41 AM
Make url case insensitive - by El Forum - 05-14-2010, 03:00 AM
Make url case insensitive - by El Forum - 05-14-2010, 03:09 AM
Make url case insensitive - by El Forum - 05-14-2010, 03:41 AM
Make url case insensitive - by El Forum - 05-14-2010, 03:48 AM
Make url case insensitive - by El Forum - 05-14-2010, 04:03 AM
Make url case insensitive - by El Forum - 05-14-2010, 04:33 AM
Make url case insensitive - by El Forum - 05-14-2010, 05:00 AM
Make url case insensitive - by El Forum - 05-14-2010, 05:05 AM



Theme © iAndrew 2016 - Forum software by © MyBB