php - How to set redirects to many websites in apache with htaccess? -


i need redirect 1 thousand links different place , set redirect other redirect homepage, there problem must leave admin is. don't know how redirect these links , set in htaccess don't want redirect nothing /admin/. there real way? or maybe faster?

you can use on .htaccess:

rewriteengine on rewritecond %{request_uri} !^admin rewriterule (.*) newsite.com/$1 [l] 

the above redirect newsite.com except admin dir


learn more mod_rewrite


Comments