On Wed, Jun 11, 2008 at 21:23,  <[EMAIL PROTECTED]> wrote:
> Is there a simple rewrite rule to change all space (and/or %20's) in a URL
> to underscores (_) ??

RewriteRule   ^(.*)\s(.*)$      $1_$2 [N]

This rule will (if present) replace on space with an underscore, after
which ruler processing is restarted bacause of the N flag. So this
server will loop over this rule until no more spaces are present...

Krist



-- 
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Bremgarten b. Bern, Switzerland
--
A: It reverses the normal flow of conversation.
Q: What's wrong with top-posting?
A: Top-posting.
Q: What's the biggest scourge on plain text email discussions?

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to