HandlerMapping Class
The IIS handler mappings used to define which handler processes HTTP requests with certain extension. For example, it is used to configure php-cgi.exe process to handle all HTTP requests with >>*<<.php extension.
Constructor
HandlerMapping(*args: Any, **kwargs: Any)
Variables
| Name | Description |
|---|---|
|
extension
|
Requests with this extension will be handled using the specified FastCGI application. |
|
script_processor
|
The absolute path to the FastCGI application. |
|
arguments
|
Command-line arguments to be passed to the script processor. |
Attributes
arguments
Command-line arguments to be passed to the script processor.
arguments: str | None
extension
Requests with this extension will be handled using the specified FastCGI application.
extension: str | None
script_processor
The absolute path to the FastCGI application.
script_processor: str | None