Making it easy to redirect without regex
-
Regex is a very complicated syntax to manage for even the best programmers and it’s impossible for regular administrative users. 100% of the cases for regex (for our staff) come from 3 needs:
- Dealing with query strings, such as http://example.com/my-path?field=value
- Dealing with trailing slashes, such as http://example.com/my-path/
- Dealing with capital letters, such as http://example.com/MY-path
If we want to match the following URLs
http://example.com/my-path
http://example.com/my-path?field=value
http://example.com/my-path/
http://example.com/my-path/?field=valueWe’d need 2 complicated regex: ^/my-path/?\? and ^/podcast/?$
Would it be possible to have 3 advanced checkboxes for creating a redirect?
- Ignore query variables
- Ignore trailing forward slashes
- Ignore case
If we had those 3 options, for our staff, regex would be a thing of the past. I’m guessing that most others would greatly benefit from this as well.
Thanks so much for making and supporting this plugin!
The topic ‘Making it easy to redirect without regex’ is closed to new replies.