Search code examples
iis-7

How to add a server variable in IIS


I am not very familiar with IIS7 and I need to create a server variable so that I can access it within my PHP code. I can easily accomplish this in Apache by using:

SETENV variable_name variable_value

in the .htaccess file. However accomplishing this in IIS seems to be a bit of a secret. I have looked online for info and the closest thing I can find states using the URL Rewrite Module using these steps:

  1. Clicking on View Server Variables
  2. Click the Add link and enter the variable name
  3. Go back to rules and click the View Rewrite Maps
  4. Click Add Rewrite Map and enter the default value.
  5. Restarted the server.

Full docs can be found at: http://www.iis.net/learn/extensions/url-rewrite-module/setting-http-request-headers-and-iis-server-variables

I followed that but it still doesn’t work. Any ideas how this is done? Is it even possible to do this in IIS? All I want to do is set up a server variable with a static value.

example: $_SERVER['MY_VARIABLE']

Thanks.


Solution

  • I solved this by using the PHP auto_prepend_file directive. More information can be found here: http://www.php.net/manual/en/ini.core.php#ini.auto-prepend-file

    Just create a file that adds the desired value to the $SERVER array, set that as the auto_prepend_file and you are good to go. This will work with any server, not just IIS.