Reputation: 37377
How can i reference the document root from within an htaccess file?
ie:
i currently have
php_value auto_prepend_file C:/wamp/www/hf_latest_desktop/prepend.php
but i would like
php_value auto_prepend_file **AUTO_DOC_ROOT**prepend.php
where '**AUTO_DOC_ROOT**' the root path
Upvotes: 4
Views: 1028
Reputation: 85478
You won't need to have an absolute path if the file in question is in PHP's include_path
Upvotes: 1