重定向IIS 8.5中的URL

时间:2017-07-04 09:31:31

标签: redirect iis url-rewriting canonicalization


我现在正在使用IIS 8.5,需要从中重定向 http://mydomain.de/produkte.asp?produkt=someID

http://mydomain.de/produkte/someID.html

谢谢!

1 个答案:

答案 0 :(得分:0)

一天工作,在这里:

$(document).ready(function(){

var txt = $('.editor').text();
var splitTxt = txt.split('');

 $('.editor').keyup(function(){ 
 if($('.editor').text().length == 0){
    $(this).text(splitTxt[1]);
 }

 });

});