I have this site and when you click on the go in the center i have it going to this url
http://dev.posnation.com/welcome/redirect
which is not the proper page for the welcome controller and the redirect action. The proper url is
http://dev.posnation.com/index.php/welcome/redirect
My codeigniter structure is like this
-rw-r--r--@ 1 tamer staff 225 Apr 11 13:09 .htaccess
drwxr-xr-x@ 18 tamer staff 612 Apr 8 17:26 application
drwxr-xr-x 11 tamer staff 374 Apr 11 09:46 css
drwxr-xr-x@ 6 tamer staff 204 Mar 24 14:20 graphics
drwxr-xr-x 17 tamer staff 578 Apr 11 09:54 js
drwxr-xr-x@ 10 tamer staff 340 Apr 7 12:20 system
drwxr-xr-x@ 16 tamer staff 544 Apr 7 12:20 user_guide
with the index.php out one directory
my .htaccess consists of this
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|images|css|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
Any ideas