Apache Mod Rewrite - Replace : character with another
问题 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: http://example.com/some_interesting:info http://example.com/some_interesting_info http://example.com/some:interesting:info http://example.com/some:interesting_info would all point to this file some_interesting_info How can I do this? EDIT: Did more testing this works RewriteRule ^(.*)_(.*) $1$2 [L] RewriteRule ^(.*)\_+(.*) $1$2 [L] test