Hi Guys, We are making some headway with our mod_rewrite issue. our main problem is that google when trying to crawl our URLS is messing up our URL and is trying to access:http://www.example.com/reviews/index.php%3Faction=fullreview&id=148 Insead of: http://www.example.com/reviews/index.php?action=fullreview&id=148 Right now we were able to tell the server to parse http://www.example.com/reviews/148.html AS http://www.example.com/reviews/index.php?action=fullreview&id=148 What were having a hardtime working out is to tell the server to parse/redirect http://www.example.com/reviews/index.php%3Faction=fullreview&id=148 Into http://www.example.com/reviews/148.html Our current .htaccess file looks like this, RewriteEngine on RewriteBase /reviews RewriteRule ^(.*)\.html$ index.php?action=fullreview&id=$1 Does anyone know how to tell it what we want? It is only google were concerned with. Many thanks in advance. Chris
|