I'm trying to build a short uri service with CI just so i can learn CI faster
anyway .. i got stuck at the routing
i hid the index.php then added the following route $route['([A-z0-9]{4})'] = "/forward/redirect/$1";
ama bu sadece benim varsayılan denetleyici gösterir
ben de Htaccess ile çalıştı
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([A-z0-9]{4})$ /forward/redirect/$1 [NC]
it gives error for not having any passed data any help is appreciated. Cheers