View Single Post
  #2 (permalink)  
Old 03-03-2008, 04:35 AM
Merlin Merlin is offline
Junior Member
 
Join Date: Mar 2008
Posts: 1
Default

Not sure if you're still having trouble with this.

Try this in your .htaccess file:

Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Should work for ya.

Eric
Reply With Quote