9
           
            
                
     
    
    Thanks again
The new code
 RewriteRule ^modules/positive_thinking_power/index.php.*$ http://makingdestiny.com/believe.item.%1/positive-thinking-concept.html [R=301,NC,L]  
takes me to
 http://makingdestiny.com/believe.item./positive-thinking-concept.html?content_id=1  
which shows page not found as the correct url is
 http://makingdestiny.com/believe.item.1/positive-thinking-concept.html  
On removing the % sign before 1 from the original code the old url takes me to
 http://makingdestiny.com/believe.item.1/positive-thinking-concept.html?content_id=1  
This page shows the content but still has ?content_id=1 added to the end of the link.
Another observation is from the above code all pages with content_id=1 or 2 or 3 are redirected to the new page. What i want is to redirect only ?content_id=1 to be redirected and not any other page.