01-20-2011, 02:25 AM
[eluser]InsiteFX[/eluser]
InsiteFX
Code:
<IfModule mod_rewrite.c>
Options +FollowSymLinks -Indexes
RewriteEngine onlines <-- should RewriteEngine on
#AllowOverride All
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
<IfModule mod_php5.c>
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
<IfModule !mod_php5.c>
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
</IfModule>
InsiteFX