No luck, I tried both methods and nothing changed - I know I can use RewriteEngine as I have it on another directory program I was testing which worked.
Any ideas?
This is a sample of the other directory program I mentioned which can be previewed at: http://www.c4sites.co.uk/c4search_old
RewriteEngine On
RewriteRule ^(.*)/$ index.php?category=$1 [QSA,L]
RewriteRule ^index([0-9]+).html$ index.php?category=&page=$1 [QSA,L]
RewriteRule ^index.html$ index.php?category=$1 [QSA,L]
RewriteRule ^(.*)/index.html$ index.php?category=$1 [QSA,L]
RewriteRule ^(.*)/index([0-9]+).html$ index.php?category=$1&page=$2 [QSA,L]
RewriteRule ^([a-z]+)-listings.html$ listings.php?view=$1 [QSA,L]
RewriteRule ^([a-z]+)-listings([0-9]+).html$ listings.php?view=$1&page=$2 [QSA,L]
RewriteRule ^([^/]+)-l([0-9]+).html$ view-listing.php?title=$1&id=$2 [QSA,L]
RewriteRule ^(.*)/(.*)-l([0-9]+).html$ view-listing.php?cat=$1&title=$2&id=$3 [QSA,L]