htaccess:从auto_prepend中创建目录异常?

时间:2010-06-23 20:44:19

标签: php apache .htaccess

有没有办法让我的auto_prepend命令忽略我的includes/ajax/目录?

我可以轻松编写正则表达式,只知道如何标记条件语句......

# choose which files are mother files (aka not includes or ajax)
# add dochead to these files
{some kind of regex conditioon here }
php_value auto_prepend_file  C:/wamp/www/new_glaven_valley/views/components/doc_head.php

3 个答案:

答案 0 :(得分:1)

是 - 使用LocationMathcdirectoryMatch但我的首选是使用存根文件作为自动前置,并根据$ _SERVER ['REQUEST_URI']的值选择进一步包含php代码 - 使用过程语言而不是配置文件来描述复杂的结构和关系要容易得多 - 而且每次要更改/保存设置时都不需要重置Web服务器。

下进行。

答案 1 :(得分:0)

为什么不在你的include /和ajax /目录中粘贴.htaccess文件来取消设置auto_prepend_file(或者如果不能这样做,你总是可以让这些目录auto_prepend一个空文件。

答案 2 :(得分:0)

php_value auto_prepend_file none