On Wed, Apr 15, 2009 at 7:41 PM, Igor Cicimov <icicimov@xxxxxxxxx> wrote: > RewriteEngine On > RewriteRule ^/(.*) /spaces/$1 > > Igor Actually, since it was specified as needing to redirect, you need the [R] flag at the end, but that will end up redirecting forever. You need to either set up the rewrite to not match when the requested URL starts with /spaces/ (which would probably be a little tricky), or just use a RewriteCond to apply when it *doesnt* match ^/spaces/.* . Even if you don't actually want to redirect, but just do an internal rewrite, you should probably still include this precaution (in fact, you might need it, I'm not sure) in case someone actually tries to access http://website.com/spaces/something. -Brian -- Feel free to contact me using PGP Encryption: Key Id: 0x3AA70848 Available from: http://keys.gnupg.net --------------------------------------------------------------------- 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@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx