Ok guys, here's the story: my server in configured so it would parse all the html request as php, did this so I can insert php code in to html files... and is working.
But, I have 2 html pages that I'd like for the server to parse as html, about.html and about-1.html So, how can I do this with htaccess or the apache's config file? (if possible)

The reason is that that these 2 pages have a lot of visitors and I think is they'll parse as they are, html, it will take some load from the apache server, making it a little lighter.

This should work:

<Files about.html>
php_flag engine off
AddType text/html .html
ForceType text/html
</Files>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.