Auto redirect to different web page

If you are getting a permalink that is abc-3 while you are entering abc that often suggests that somewhere the slug is already being used. Perhaps abc is already used as a category, or a page. Or perhaps it was previously created and deleted and it is still in the trash. Make sure you delete … Read more

how to redirect 404 to attachment.php?

Try something like the following at the top of your .htaccess file, before the WordPress front-controller: RewriteRule (.+/)amp$ /$1 [R,L] This redirects a request for /<something>/amp to /<something/ – removing the “amp” suffix. Note that this is a 302 (temporary) redirect.