I have folder called Pages which contains .php files. I want to convert .php extention to .html for this particular folder only.I have the .htaccess code to convert the extention
RewriteRule ^([a-z0-9_]+)\.html$ /index.php$1 [NC,L]
But I wanted to make changes for the Particular folder only.
Any ideas???