2013-10-29 143 views
1

我需要讓IIS URL重寫模塊工作,但我沒有運氣。IIS URL重寫到子文件夾

我需要做的是「注入」子文件夾(PSMS)到一個URL時,它不存在,就像這樣: https://something.somewhere.com/acp/default.aspx?k=v

沒有子文件夾PSMS所以重定向到https://something.somewhere.com/psms/acp/default.aspx?k=v

+0

看看是否有幫助:http://stackoverflow.com/questions/14206273/redirect-root-url-iis-7/14263969#14263969 – cheesemacfly

回答

0

OK,psms是託管的根文件夾; 你需要使用類似的表達

<action type="Rewrite" url="acp/default.aspx?k={R:1}" /> 
+0

謝謝,但我不是隻是想到/ acp/example,我需要每次都包含psms。所以https://something.somewhere.com/admin/default.aspx?k=v也會轉到https://something.somewhere.com/psms/admin/default.aspx?k=v –