do you ever see that when you do redirects that you have a much lower epc? (the links might not be tracking right). I was using a 301 redirect for cloaking links and it definately wasnt tracking right for me. I switched to a php redirect and it seems alot better, but my epc is still higher on pages where i dont do a redirect. Maybe its just me. Good post though
You used a 301 and switched to php redirect huh? You did the 301 with .htaccess?
There is no difference between redirects done in php or .htaccess! The 301 is a http status response code you can send. 302 is the default code for redirects, so if you didnt specify anything in php you send a 302 redirect instead of a 301 in .htaccess or whatever you did. 302 is default in .htaccess/apache too. But you probably did
Code:
Redirect 301 url1 url2
You could do
Code:
Redirect 302 url1 url2
or
Redirect url1 url2
too, to get same results as you did in php.
Makes any sense? :1orglaugh: