我想在访问<location>
ca中指定的位置之前运行脚本:
<Location "/add-content">
# Run /var/www/abc/custom-script.php first
# Then continue to load the actual page
</Location>
我的服务器中有很多网站都有此网址,因此无法在应用程序级别完成此操作。
我可以在Apache中这样做吗?
答案 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>