pues para poder usar esas urls yo tengo que pegar esto en el .htaccess
Código Apache:
Ver original<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /concurso/
RewriteCond %{REQUEST_URI} ^sistema.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_URI} ^aplicaciones.*
RewriteRule ^(.*)$ index.php/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
ah y gracias uncontroled_duck pero no me funcionó ni poniendole el constructor :s a ver que diablos hago