[eluser]HSKrustofsky[/eluser]
I know there are a million post on this, but I have been trying to use every example, and my problem has yet to be fixed.
I have it to where it successfully removes index.php. The main home page loads, but when I click on a navigation link, nothing shows up like a dead link.
Here is my .htaccess file:
Code:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /DCS/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
I checked my Apache settings, and mod_rewrite is activated, and I have already changed everything needed in the config.php file. I have no idea what else to do. Any suggestions? Thanks in advance.