You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by da...@ymp.gov on 2008/06/11 21:23:49 UTC

[users@httpd] rewrite rule to change spaces to underscores

Is there a simple rewrite rule to change all space (and/or %20's) in a URL 
to underscores (_) ??

Thanks,

Dan


---------------------------------------------------------------------
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: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] rewrite rule to change spaces to underscores

Posted by Krist van Besien <kr...@gmail.com>.
On Wed, Jun 11, 2008 at 21:23,  <da...@ymp.gov> 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



-- 
krist.vanbesien@gmail.com
krist@vanbesien.org
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: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org