Welcome Guest, Not a member yet? Register   Sign In
Only loading index page
#2

[eluser]jonez[/eluser]
You need an .htaccess file next to the root index.php of CI (/ibewAmin/.htaccess).

Code:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]

What this does is take the requested URL and passes it to the root index.php as a parameter. CI maps the path segments to your controllers, if it can't find a match it throws a 404.


Messages In This Thread
Only loading index page - by El Forum - 01-04-2014, 08:51 AM
Only loading index page - by El Forum - 01-05-2014, 07:03 AM
Only loading index page - by El Forum - 01-05-2014, 10:32 AM
Only loading index page - by El Forum - 01-05-2014, 12:50 PM
Only loading index page - by El Forum - 01-05-2014, 01:10 PM
Only loading index page - by El Forum - 01-05-2014, 01:55 PM
Only loading index page - by El Forum - 01-05-2014, 04:05 PM
Only loading index page - by El Forum - 01-05-2014, 05:59 PM
Only loading index page - by El Forum - 01-05-2014, 06:18 PM
Only loading index page - by El Forum - 01-06-2014, 06:06 AM



Theme © iAndrew 2016 - Forum software by © MyBB