I want to automatically redirect all visitors to a new page with meta tag redirect?
Any ideas?
Any ideas?
<meta http-equiv="refresh" content="5; url=http://example.com/">
Redirect to http://example.com/ after 5 seconds:
<meta http-equiv="refresh" content="0; url=http://example.com/">
Redirect to http://example.com/ immediately:
(08-13-2013 07:32 AM)jamesvaaz Wrote: you can also use this tag :Bad example as that is a meta tag refresh
<html>
<head>
<title>IU Webmaster redirect</title>
<META http-equiv="refres...
(08-13-2013 08:22 AM)marcus_avrelius Wrote: So you recommend .htaccess redirect instead of Meta Refresh Tag?Yes rewrite rules or just use a 301 redirect. Using what the current accepted methods are will always prove better for you. Especially when trying to keep the beast that is Google happy.
header('HTTP/1.1 301 Moved Permanently');
header('Location: http://www.example.com/');
exit();