small problem with .htaccess file?

主宰稳场 提交于 2020-01-17 00:26:14

问题


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


回答1:


Use:

AddType application/x-httpd-php .html


来源:https://stackoverflow.com/questions/7123560/small-problem-with-htaccess-file

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!