You need to sign in to do that
Don't have an account?
BPeddle
URL Redirect
Is there any wildcard or way to setup so it doesn't do an exact match.
I want to do a redirect anytime it hits a relative url like /detail/foo ... however if it has a querystring it ignores it so this does nothing
/detail/foo?id=xxxxxxxxxxxxxxxx
Tried a variety of different formats but no luck. Not sure it is possible.
Thanks
There is no wildcard support for URL redirects.
You could likely use a regex expression using the pattern and matcher classes to sort out urls. Or even a simple url.contains('?id=') might be a quick solution for you.
You can use a regex for URL rewriting, but not with redirects.
Ooops... redirect not rewrite. Sorry for the misinformation.