Looking for a JavaScript/regex solution to transform %2F into %21.
This will allow me to successfully pass forward slashes through a GET parameter after using encodeURIComponent() on a URL.
Once the data reaches the server, I'll convert back from ! to /.
Although not perfect, this workaround is necessary due to limitations with my rewrite rules.