これを行うには、Lighttpdをインストールし 、構成に以下を追加します(C:\ Program Files \ LightTPD \ conf \ lighttpd-inc.conf):
server.port = 81 server.modules = ( ... "mod_cgi", "mod_rewrite", ... ) server.document-root = "C:/Program Files/LightTPD/HTDOCS/" index-file.names = ( "index.wsh", ....) static-file.exclude-extensions = ( .... , ".wsh" ) cgi.assign = (".wsh" => "c:/windows/System32/cscript.exe" )
サーバーCを起動します:\ Program Files \ LightTPD \ TestMode.bat
サードパーティのJavaScriptインタープリターを使用せずに、JScriptおよびVBScriptでサイトスクリプトを作成できるようになりました。
たとえば、C:\ Program Files \ LightTPD \ htdocsディレクトリに2つのファイルを作成します。
テキスト付きのindex.wsh
<?xml version="1.0" encoding="UTF-8"?> [ScriptFile] Path=index.js [Options] Timeout=0 DisplayLogo=0
およびindex.jsとテキスト
for(var i=0;i<100;i++) WScript.Echo(i.toString()+" Hello");
リンクをたどる
http:// localhost:81 / index.wsh数百行の挨拶をご覧ください。