Forum Moderators: phranque
I thought that
AddType application/x-httpd-php .ext I thought that
<FilesMatch "\.(ext)$">
php_value auto_append_file "/the/path/that/leads/to/filewithphpcode.php"
</FilesMatch> But apparently this also works:
AddType application/x-httpd-php .ext
php_value auto_append_file "/the/path/that/leads/to/filewithphpcode.php" The FilesMatch is left out. I suppose making a php_value auto_append_file
command without <FilesMatch> means "add this to anything you're parsing for php".
Is this correct? Is one way more correct than the other? Are there any problems with this shorter method?
Thanks
Dave Higgins