I'm moving from a Linux VPS to a Microsoft Server. With my Linux OS, I was using Apache and could utilize .htaccess
In that file, I had this configuration:
php_value auto_prepend_file "/inetpub/htdocs/app/tpl/includes/config/config.php"
I then ran into the painful realization that .htaccess does not work with IIS, but only Apache. I now know that IIS uses web.config, but I'm sure what would be the equivalent of this in web.config.
I simply want to append a file to every single PHP page. The website doesn't work without having the config appended, as it contains routes to essential methods.