Well I have a web host with a url..lets say www.mysite.com for demo purposes
I have uploaded my codeigniter application to a folder
www.mysite.com/site/
to test it before going live on www.mysite.com
My htaccess folder reads like 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
RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]
what should I change this to in order for my site to work withing www.mysite.com/site/
folder?
In my config file I have
$config[’base_url’] = “http://www.mysite.com/site/”;
But I get a 404 not found error when I test in a browser by typing www.mysite.com/site into the address bar.
What am I missing or doing wrong?