I want to configure my htaccess file such when i type the folder name in small case or in upper case it will redirect to the same folder.
Currently i have my file as :
RewriteEngine on
#RewriteBase /ABC/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]
The problem is when i try to access my controller giving the folder name in small case , it cannot find the controller.
That is if i try something as abc/contrller_name/controller_function
it says path no found.
Note:Working on Windows System and using XAMPP