Which is a better way to redirect?

Status
Not open for further replies.

RobJ

New member
Apr 18, 2007
14
0
0
Hey Guys...

Here is my problemo...

Because of my site design and tracking methods, I want to redirect all traffic that hits my index.php to another page within my site... (a mirror of the index.php with some extra tracking and optimization...)

Should I redirect via my Cpanel? or use a simple php redirect?

Which is more SEO friendly and is either a violation of PPC?

I kinda prefer a php redirect if this wont get me into trouble.

Im redirecting to the same domain... nothing shady... just hate traffic going to my index.php, especially when using subdomains...

Thanks for any advice.

RobJ
 


Hi Robj,
the best seo redirect is 301 redirect ,with cpanel or php code but
must permanent redirect.

greetings
 
If you want to do it in php then you can use this:

Code:
<?php
header("Location: http://www.website.com");
?>
 
Status
Not open for further replies.