I have a website. I would like to redirect all user/author url to one author/admin eg All aurthor links to redirect to one author link author 1. mysite (dot) com/author/x author 2. mysite (dot) com/author/y author 3. mysite (dot) com/author/z they are about 300 I would like all of them to redirect to author 2. mysite (dot) com/author/admin Thanks for your help guys
May be this will work, RewriteEngine On RewriteBase / RewriteRule /author/(.*) http://yoursitedotcom/author/admin [R=301,L] Code (markup):
This has worked. Thanks Amiyan Options +FollowSymLinks RewriteEngine on RewriteCond %{REQUEST_URI} !^/author/admin RewriteRule ^(.*)author/(.*)$ $1/author/admin [R=301,L] Code (markup):