2011-08-13 36 views
0

我想在IIS下運行Candy XMPP webclient(http://amiadogroup.github.com/candy/)。但是,由於它依賴於htaccess的重寫規則,我無法得到它的登錄(我已編輯的index.html,以反映我的XMPP服務器上的配置)htaccess到webconfig

糖果的htaccess的只有如下:

AddDefaultCharset UTF-8 
Options +MultiViews 
RewriteEngine On 
RewriteRule http-bind/ http://localhost:5280/http-bind/ [P] 

我是新來的IIS不知道如何轉換htaccess的文件Web.config中

+0

這將是很難實現因爲1)IIS不支持代理請求就像那樣 - 你將不得不安裝[應用程序請求路由](http://www.iis.net/download/ApplicationRequestRouting)來添加這樣的功能; 2)IIS沒有替代'選項+多視圖'(至少我不知道它)。 – LazyOne

回答