I\'m trying to redirect with apache .htaccess. I have the following codes
redirectMatch 301 /user http://clients.mydomain.com
it works pretty w
Use a regex, you're already using redirect match.
http://httpd.apache.org/docs/2.0/mod/mod_alias.html#redirectmatch
'$' matches the end of the url. In your example:
redirectMatch 301 ^/user/(.+)$ http://clients.example.com/