在htaccess中的filesMatch中排除文件夹

时间:2016-03-22 15:40:58

标签: apache .htaccess web

我有一个.htaccess:

<FilesMatch "\.php$|\.js$">
    SetHandler application/x-httpd-php
</FilesMatch>

如何排除子目录?

非常感谢。

1 个答案:

答案 0 :(得分:0)

试试这个:

RewriteEngine on


RewriteCond %{REQUEST_URI} !^/folder_to_exclude
RewriteRule \.(php|js)$ - [H=application/x-httpd-php]