I\'m trying to rewrite all URL\'s that contain a \':\' in it to another character. http://en.wikipedia.org/wiki/Filename#Reserved_characters_and_words
Example:
Here's a link to RewriteRule.
RewriteRule ^/some[_:]interesting[_:]info$ /some_interesting_info [L]
Try these rules:
RewriteRule ^/([^:]*):([^:]*:.*) /$1_$2 [N] RewriteRule ^/([^:]*):([^:]*)$ /$1_$2