現在.htaccessでindex.phpをhtmlとして設定しています。
<Files index.html>
AddType application/x-httpd-php .html
</Files>
それ以下のディレクトリはこの設定を反映したくないのですが解除方法がわかりません。
以下のディレクトリの.htaccessは何を書けばいいでしょう?
以降のディレクトリではapplication/x-httpd-phpの代わりに、text/htmlにすれば元に戻るかと思われます。
<Files index.html>
AddType text/html .html
</Files>