I want to redirect http://subdir.site.com/anything/ to http://newsubdir.site.com/ I currently using this, but it only redirects http://subdir.site.com, not http://subdir.site.com/anything.  How do I add a wildcard to this so it redirects everything?  Thanks. Options +FollowSymLinks RewriteEngine on RewriteRule (.*) http://newsubdir.site.com/$1 [R=301,L]: PHP:
try this... RewriteCond {REQUEST_URI} !^/anything [NC] RewriteRule ^(.*)$ <http://www.redirect-page.com> [L,R=301] Code (markup):