我有在 IIS 7.5 上运行的共享点站点。我想根据请求标头允许/阻止传入的请求。这是我要实现的条件
这里的 clientId 和 userAgent 是请求的 Headers。
String clientId=Request.getHeaderValue('clientID');
String userAgent=Request.getHeaderValue('useragent');
//If clientId and userAgent are empty abort the request
if(clientId.equals('') && userAgent.equals('')){
//Abort the request
}
//If clientId is not empty but is not matching my expected value,then abort the request.
if(!clientId.equals('') && !clientId.equals('1234'){
//Abort the request
}
//If userAgent is not matching my expected value ,then abort the request.
if(!userAgent.equals('myfavbroswer')){
//Abort the request
}
我已经查看了 IIS 中的 URLRewriteModule。它似乎不符合我的目的。
这是我想要实施的粗略逻辑。我是 IIS 服务器和共享点的新手。有人能告诉我我可以把这个逻辑放在哪里来达到我的目的吗?
谢谢。