我使用类似的方法将Google Analytics动态附加到我网站上的所有网页。
Options +Includes
AddHandler server-parsed .html
AddHandler application/x-httpd-php .html
# These values are used for local testing...
#php_value auto_prepend_file D:/wamp/www/_prepend.php
#php_value auto_append_file D:/wamp/www/_append.php
# These values are used on production server...
php_value auto_prepend_file /var/vcap.local/dea/app/_prepend.php
php_value auto_append_file /var/vcap.local/dea/app/_append.php
我已经注释掉了第一对,因为目前我只能在一台服务器上运行。是否可以修改此.htaccess
,以便它可以自动与两个服务器一起使用?
答案 0 :(得分:1)
auto_append_file和auto_prepend_file都使用include路径,因此如果环境在include路径中有相关目录,则应该可以这样做:
php_value auto_prepend_file _prepend.php
php_value auto_append_file _append.php