How can I disable auto_prepend in specific folders using htaccess?

前端 未结 1 363
悲哀的现实
悲哀的现实 2020-12-30 02:46

I\'m using auto_prepend on my website, however I don\'t want it to be used in every folder. How can I stop php from auto_prepending a file within certain folders using .hta

相关标签:
1条回答
  • 2020-12-30 03:32

    In a .htaccess file, you can use this to define a specific file that will be auto-prepended, in a directory :

    php_value auto_prepend_file "prepend.php"
    

    So, I suppose you could use this to de-activate auto-prepending in a directory :

    php_value auto_prepend_file none
    


    Note I am using the special value "none", as explained in the documentation of auto_prepend_file :

    The special value none disables auto-prepending.

    0 讨论(0)
提交回复
热议问题