I am using CodeIgniter in my project and I need to clean the url. I use this htaccess:
RewriteEngine On
RewriteCond $0 !^(index\.php|images|captcha|css|js|robots\.txt)
RewriteRule ^.*$ index.php [L]
The url redirect is working fine.
If I use localhost/example/controll/ this works fine, if I have an controll as controller, but if I need to pass a value to the controller like localhost/example/controll/how-to-design/ it says 404 not found. Do I need to get the how-to design in controll class and process it?
