在子目录中禁用 PHP,但在父目录中允许

在子目录中禁用 PHP,但在父目录中允许

我在 Ubuntu 上使用多个虚拟主机,并想在 httpd.conf 中的子目录中禁用 PHP(而不是从 .htaccess)

这是虚拟主机的配置

<VirtualHost subdomain.website.com>
    DocumentRoot /var/www/html/subdomain
    ServerName subdomain.website.com

    <Directory /var/www/html/subdomain>
        allow from all
        Options None
    </Directory>

    <Directory /var/www/html/subdomain/nophp>
        php_flag engine off
        AddType text/plain php

        Options All Indexes FollowSymLinks
        Order allow,deny
        Allow from all
    </Directory>
</VirtualHost>

但它忽略了第二块<Directory ...>

实际上这是一个相反的问题禁用 php,但允许在子目录中

相关内容