Welcome Guest, Not a member yet? Register   Sign In
Code to delete index.php in Codeigniter 3 and lowercase name to controllers/models
#2

This code in .htaccess works for me:
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>
Rename all your controllers, libraries and models so that they start with a capital letter.
Also make sure that your config.php contains this line:
PHP Code:
$config['index_page'] = ''
Reply


Messages In This Thread
RE: Code to delete index.php in Codeigniter 3 and lowercase name to controllers/models - by Wouter60 - 06-23-2015, 01:03 PM



Theme © iAndrew 2016 - Forum software by © MyBB