redirection

PHP redirect function (301 / 302)

I'm often asked how to do 301 redirects in PHP. It's not hard, but it's a pain having to remember the exact syntax every time. Here's a little function I wrote for Jojo CMS for making redirects easy. USAGE Add one line of code whenever you need to do a redirect. 301 REDIRECTS... redirect('http://www.domain.com'); or redirect('http://www.domain.com', 301); 302 REDIRECTS... ...
> articles/php-redirect-function/

Moving a Website

It's long been known that in order to rank in a country specific Google, such as Google New Zealand or Google UK, you need to have one of 2 things. Either have a domain name relating to that country (eg .nz or .uk) or have the website hosted in that country. With this in mind, I have always made sure that when a new site is launched, it meets one of these criteria to be found in the...
> articles/46/moving-a-website/

PHP 301 Redirects

The preferred way of redirecting a page that has moved is by a 301 redirect. In PHP, 301 redirects are not the default (a 302 redirect is the default). Whenever you move a visitor to a new location, you should use the PHP 301 redirect, which involves one extra line of code. In PHP, a 302...
> articles/33/php-301-redirects/

Redirects - the good, the bad and the ugly

Redirects are an important part of a well maintained site. As pages are deleted or moved, it's common courtesy to sent the visitor to the new page, or at least apologise for the inconvenience. TYPES OF REDIRECT Redirects come in several flavours. Redirects can be done by the server, or by the...
> articles/6/redirects-the-good-the-bad-and-the-ugly/

Related Tags