Hey guys I know this question is ask here everyday but I can make my site work with what I found so far, so here goes again.
Let me start by saying that I have other sites at Godaddy running on CI framework and they are working good so I can figure out why this one is not working
My problem is routing
Site http://it360.us/
This works fine http://it360.us/index.php?/pages/network but obviously I want this
http://it360.us/network
Config file
$config['base_url'] = "http://it360.us/";
$config['index_page'] = "";
$config['uri_protocol'] = "REQUEST_URI";
Route file
$route['default_controller'] = "pages";
$route['network'] = "pages/network";
htaccess
Options +FollowSymLinks
Options -Indexes
DirectoryIndex index.php index.html index.htm
RewriteEngine on
RewriteCond $1 !^(index\.php|img|css|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L,QSA]
Thanks, Robert
