I am looking to redirect my homepage for this website www.mirror-mirror.org to http://www.mirror-mirror.org/eatdis.htm I found this code in an online search, but wanted to make sure its correct. <meta http-equiv="refresh" content="0;URL=http://www.mirror-mirror.org/eatdis.htm"> Any help would be appreciated.
I think it is a lot safer to use a .htaccess file and issue a permanent 301 redirect. Here's the equivalent code of the redirection using .htaccess. Redirect 301 / http://www.mirror-mirror.org/eatdis.htm Note: For more redirection options, you can visit the resources below: http:/ /ndesign-studio .com/blog /301-htaccess-redirect http:/ /www.webconfs .com/how-to-redirect-a-webpage.php Code (markup):
Thanks for the information. Where in my code do I put this: Redirect 301 / http://www.mirror-mirror.org/eatdis.htm Thanks Scott
If you want to redirect your page permanently then you need to use 301 redirection and if you want to redirect your page temporary then you can use 302 redirection.
You will need to place the above Redirect 301 line of code in the .htaccess file (anywhere after the code "RewriteEngine on") within your website's home directory.