> I don't find this option in Apache : how to use a .dll and alias it as a .cgi.
> Example :I want "azerty.dll" to be alias and named "azerty.cgi" in httpd.conf.
> I found it on Alibaba server : it names DLL alias
> you enter an Alias: /cgi-bin/azerty.cgi
> you enter a Value: c:/MyServer/dll/azerty.dll
> And it works fine !
>
> It is possible to do the same with Apache ?
i don't know wether it's possible to do this with apache and have no windows
at hand to test. but it is easily doable like this with mod_rewrite:
ScriptAlias /cgi-bin "c:\myserver\dll"
RewriteEngine On
RewriteRule /cgi-bin/(.*)\.cgi /cgi-bin/$1.dll
joachim<!-- ~MESSAGE_AFTER~ -->
>> Stay informed about: an alias for use a dll as a cgi !