Forum Moderators: phranque
# Replace a hyphen with space, set redirect-required flag, and then re-start
# mod_rewrite processing in case there's another hyphen in this requested path
RewriteRule ^([^-]*)-(.*)$ $1\%20$2 [E=rhyphen:yes,NE,N]
#
# If redirect-required flag set by previous rule, do the redirect
RewriteCond %{ENV:rhyphen} ^yes$
RewriteRule ^(.*)$ /project1/$1? [R=301,NE,L]