[eluser]TheFuzzy0ne[/eluser]
Welcome to the CodeIgniter forums!
Is mod_rewrite enabled?
If it is, first of all (if you're able to), I would recommend you add the Web root directory for your application as a virtual host. Then you can edit your hosts file, and add something like:
Code:
mysite.imaginarydomain.com 127.0.0.1
Then you should be able to access your site using the URL above.
After that, this .htaccess file should do the trick.
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/(system|application|html_store)
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
</IfModule>