The site seems to draw the correct links but its not redirecting me to the correct view.
The same code works fine on the old server here http://ruse.systemio.net/q&a/. The new server is here http://www.rusereplays.com/q&a/
The problem I'm having is if you click a link on that page to a question it rewrites the link and redirects to the site, but for the new server it seems to just redirect to index.php.
This is my .htaccess im using on both servers
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
</IfModule>
ErrorDocument 404 /index.php
This is the phpinfo for the two servers
old -> http://ruse.systemio.net/scripts/phpinfo.php new -> http://www.rusereplays.com/scripts/phpinfo.php
Anyone having a suggestion on how to fix this or too help me find a solution to my problem?