在访问apache中的某个位置之前执行其他脚本

时间:2014-04-06 02:19:07

标签: php apache

我想在访问<location> ca中指定的位置之前运行脚本:

<Location "/add-content">
 # Run /var/www/abc/custom-script.php first
 # Then continue to load the actual page
</Location>

我的服务器中有很多网站都有此网址,因此无法在应用程序级别完成此操作。

我可以在Apache中这样做吗?

1 个答案:

答案 0 :(得分:2)

您需要设置handler

<Location "/add-content">
    # Run /var/www/abc/custom-script.php first
    # Then continue to load the actual page
    Action pre-script /var/www/abc/custom-script.php
    SetHandler pre-script
</Location>