Thread Rating:
  • 0 Vote(s) - 0 Average
Share Thread:
Redirects
#1
Here are some common redirects that are used almost often my webmasters and site owners. So, decided to provide the codes of them.

PHP Single Page Redirect

You have to insert this code in index.php file.

Quote:<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: <!-- m --><a class="postlink" href="http://www.newdomain.com/page.html">http://www.newdomain.com/page.html</a><!-- m -->");
exit();
?>

PHP Canonical Redirect

This add or removes the 'www' prefix of your domain.

Quote:<?php
if (substr($_SERVER['HTTP_HOST'],0,3) != 'www') {
header('HTTP/1.1 301 Moved Permanently');
header('Location: <!-- m --><a class="postlink" href="http://www.'.$_SERVER">http://www.'.$_SERVER</a><!-- m -->['HTTP_HOST']
.$_SERVER['REQUEST_URI']);
}
?>

.htaccess Singe Page Redirect

Insert this code in your .htaccess file

Quote:Redirect 301 /old/oldpage.htm /new/http://www.domain.com/newpage.htm

.htaccess Canonical Redirect

Quote:Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ <!-- m --><a class="postlink" href="http://www.domain.com/$1">http://www.domain.com/$1</a><!-- m --> [r=301,nc]
Reply
#2
Nice post and thanks. I needed the .htaccess updates.
Reply
#3
Great information about redirects.Thanks.
Reply
#4
Thanks for sharing redirects code in php.
Please share types of redirects in php or how many way can we write code for redirects.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)
[-]
Ad

[-]
Top Articles
100+ Social Bookmarking Sites List
55+ Image Submission Sites List

[-]
Recent Posts
Adtrafico - All in One Thread
Are their offers just dating ones? Or, related to adult entertainment? I have come in con...avinash29 — 04:46 AM
HostXNow - All in One Thread
I will take your advice into consideration, I need a new host these days. What are...virtual_gambler — 04:37 AM
Metrics to look at before getting a link from - DA or PA or Spam Scor...
I do believe in domain Authority and page authority. As the website passes its link j...virtual_gambler — 04:35 AM
Google gives a Manual Action Penalty after March 2024 update
Found it. It was one of the couple of comments. Removed the entire plugin of comments.lolab — 04:31 AM
ZenCortex Canada Uses, Side Effects, and More!
ZenCortex Canada || ZenCortex Canada is an exceptionally confided in hearing help recipe...ErikSuliv — 04:12 AM

[-]
Follow us on Facebook