Hey, I had this script runing perfectly, then tonight I changed the layout. The htacess is working but it's preventing images loading like www.mysite.com/images/image.jpg when If I remove the htaccess it works? Here's the htacces code: RewriteEngine On RewriteRule ^cheat-code/([0-9]*) index.php?cheat=$1 [L,NC] RewriteRule ^game-cheats/(.*)/([0-9]*) index.php?letter=$1&no=$2 [L,NC] RewriteRule ^(.*)/([0-9]*) index.php?platform=$1&no=$2 [L,NC] cheers in advance!
the way i usually find .htaccess errors is by removing the code from the .htaccess file one line at a time until the problem is fixed, then you know where the problem lies.