在主public_html文件夹中,我有一个包含此内容的htaccess文件:
AddType text/html .shtml
AddHandler server-parsed .shtml
Options Indexes FollowSymLinks Includes
DirectoryIndex index.shtml index.html
这基本上可以解析.shtml文件。
现在,我有一个子文件夹,我不想要解析.shtml文件,而是像默认情况下那样.html和.php文件被正确解析。
我已经尝试在子文件夹中没有htaccess,并且.php不会被解析为.php。
我尝试使用RemoveType和RemoveHandler删除.shtml解析器,但这不起作用。
基本上我尝试过的所有组合都会导致403,页面以明文形式吐出或者被解析为普通的html而没有php支持。
这是子文件夹中的当前htaccess:
RemoveType .shtml
RemoveHandler .shtml
DirectoryIndex index.php
导致403 Page Forbidden