How to set up a permanent redirect ?

There are many ways to do it, here are 2 examples :

htaccess files :
Redirect permanent /index.php http://www.domain.com

PHP redirect:
Header(‘HTTP/1.1 301 Moved Permanently’);
Header(‘Location: http://www.domain.com’);

SEOSoftware Oseox Monitoring