Simple IIS Redirection expression (“*”) throws an error: The expression “*” contains a repeat expression?

The error says it all. Your regular expression is invalid. The * is a repeat character (zero or more times).

You should indicate which character is allowed to be repeated zero or more times. You probably want any character, so your regular expression should be.

The error says it all. Your regular expression is invalid. The * is a repeat character (zero or more times).

You should indicate which character is allowed to be repeated zero or more times. You probably want any character, so your regular expression should be: . * To answer your other question about proxying, it's not possible to proxy by rewriting to another host name.

You can only rewrite to other URI's on the same server. To proxy with IIS you have to install the ARR (Application Request Routing) module.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions