[eluser]shanecavaliere[/eluser]
Yeah, that .htaccess file, as well as the respective index.php file are both in the /test/babs directory.
For this problem, both the CodeIgniter index.php file and the .htaccess file are in the site's root.
Also, I'm not sure if this helps, but when I change the .htaccess file to:
Code:
# this is the initialization
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
# these are the rewrite conditions
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# and finally, the rewrite rules
RewriteRule ^([a-zA-Z0-9\-]+)/$ index.php/$1 [L]
It sort of works... When I go to 'example.com/blog/' it shows me what I would like, but when I go to 'example.com/blog/index/' it gives me a 404 error.
(edit: sorry, I hit submit before I was ready)