“CI assumes you already know how to program in PHP, use webservers, css, etc.”
My situtation is:
In percutz folder i have my .htaccess file with those configs. (not working)
I removed index.php from config.php.
I tried to access http://localhost/percutz/teste (i have a controller called teste) or http://localhost/index and the files were not found.I know what is Apache, .htaccess, rewrite rules, but how you can see, my configs are not working for a reason what i’m not seeing…
Bye!
I wonder how you modify in your .htaccess file
RewriteRule ^(.*)$ index.php/$1 [L] means all the stuffs are placed in the root folder.
In your case, i think, you should change to RewriteRule ^(.*)$ /percutz/index.php/$1 [L]
Hope that will help your
