How to do 301 redirects in CodeIgniter?

by kade.hermiston , in category: Technology , 4 years ago

How to do 301 redirects in CodeIgniter?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by cristobal , 4 years ago

We can use redirect helper to do 301 redirects in Codeigniter.

Syntax :

1
 redirect($uri = '', $method = 'auto', $code = NULL)

Parameter:

1
2
3
    $uri (string)  URI string
    $method (string)  Redirect method (‘auto’, ‘location’ or ‘refresh’)
    $code (string)  HTTP Response code (usually 302 or 303)

Return type: void

Sample Usage:-

1
redirect('/posts/13', 'New location', 301); 

Related Threads:

How to add 301 redirects in PHP?
What Are the Key Features That Make Codeigniter Ideal for Rapid Php Application Development?
How to delete a record in Codeigniter?
How to check the version of CodeIgniter framework?
How to set csrf token in codeIgniter?
Why CodeIgniter is a loosely coupled mvc framework?