Hey gang, is it possible to redirect 404 error page to another website using htaccess? example.. http://a.com 404 to http://b.com thanks
If you are asking about redirecting users to http://b.com when a 404 error occurs, it's possible. But in that case, it will not return a 404 error code, rather a 200 Found code. Add this to your .htaccess at http://a.com : ErrorDocument 404 http://b.com Code (markup):