Hello, I absolutely hate RegEx, I really need to learn it - it's so powerful. Here's the issue:
I'm trying to rewrite URLs in IIS, and I've got this default RegEx:
^([^/]+)/?$
However, that does let things like this business/profile.html
through, but it lets business-profile.html
through.
How do I change it so that it lets the former through?
Thanks