Marco
Marco

Reputation: 867

small problem with .htaccess file?

i have a small .htaccess file which allow me to run 1 html file as php

<Files yourpage.html>
AddType application/x-httpd-php .html
</Files>

i need to edit this script so it run all .html and .htm files as .php and i need this to apply for the files not only yourpage.html i tried to do it like that

AddType application/x-httpd-php5 .php .html

but it doesn't make any sense i though to remove yourpage.html and put *.html but i don't if its the right way or not

Upvotes: 0

Views: 169

Answers (1)

Victor
Victor

Reputation: 5769

Use:

AddType application/x-httpd-php .html

Upvotes: 1

Related Questions