I\'ve looked all over for the htaccess code to redirect a single page and haven\'t had any luck with many solutions.
Basically I need to redirect this:
/
In the htaccess file in your document root, you can add either this:
RedirectMatch 301 ^/example/my-stuff/$ /example/home/
Or you can use mod_rewrite instead:
RewriteEngine On RewriteRule ^example/my-stuff/$ /example/home/ [L,R=301]