Process HTML files like PHP

后端 未结 4 1964
清酒与你
清酒与你 2020-11-29 11:17

I\'ve been trying to get .html files to process like .PHP files, using the .htaccess file. I\'ve used the following, both of which don\'t work and trying to access the test

4条回答
  •  自闭症患者
    2020-11-29 12:12

    Try this:

    AddHandler application/x-httpd-php .html .htm
    

    or

    AddHandler x-httpd-php .html .htm
    

    or

    
    SetHandler application/x-httpd-php
    
    

    or

    
    SetHandler application/x-httpd-php5
    
    

    Edit: For 1&1 server:

    AddType x-mapp-php5 .html .htm
    

    One of these should work

提交回复
热议问题