I have read htacess condition from this url Htacess Url
but can't understand how to solve the problem when the condition is solve in htacess.
My main question is how to change the all php page into the html format any where to click the the PHP link then open the
Just Like Example : This php url any where to open that the redirect to the html page what i set the condition in htacess PHP Url
http://www.localhost/efundoo.com/products.php?product=Touch-Screen-Digitizer-For-Videocon-A10
And change into the
My htacess condition is following
1) This is running fine
RewriteRule ^([^/]+)/([^/]+)/?$ index.php?user=$1&type=$2 [NC,QSA]
2) but when i try this condition Page are not open
RewriteCond %{THE_REQUEST} \s/+.+?\.php\?user=([^\s&]+)&type=([^\s&]+)\s [NC]
RewriteRule . %1/%2.html? [R=301,L]
RewriteRule ^([^/]+)/([^./]+)/.html$ page.php?user=$1&type=$2 [NC,L,QSA]