Using python as CGI on linux/apache server, The first line (one that defines the interpreter, shebang) should be like this:
#!/usr/bin/env python
Running same python CGI on windows/apache server, the first line (one that defines the interpreter) should be like this: (assuming that python installed to c:/python27)
#!c:/python27/python.exe
Is there option to set identical line so that no changes will be needed while moving files from linux to windows?