I have a .htaccess file with content below which is changing my index.php?page=aboutus to aboutus.htm RewriteRule ^([^/.]+)(.html)/?$ index.php?page=$1
I am using $_GET["page"] to print content from database using PHP, but if someone type test.html it is checking database for test data,
How can I use .htaccess to alow only few .html files in url such as aboutus.html, home.html, projects.html etc...
Thanks