IIS7 URL Rewrite - RegExp to match any string that does not contain a DOT (.)?

(^. +)$ Your expression is missing the "$" to match the end of the string, so it is successfully matching 1+ occurrences of a non-DOT character and calling it a day.

I am using URL Rewrite module 2 in IIS 7. I have a certain rule for rewriting URLs in IIS. But I want that rule to apply to only strings that DO NOT contain a DOT (.) If the string contains a DOT, I want it to fail and simply be not rewritten.

I thought this will work - ^(^. +) but it rejects only strings that start with a DOT. "projects", "about", "contact" should be matched.

Css" should be rejected. What is the regular expression I should use?

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