Well, I know that when changing or deleting a page URL, it is best to redirect that URL to the new corresponding URL.
But how long? forever and ever?
For example, I use Google’s website optimizer to test various page variations. So I need to create a different url for each type: original.php, var1.php, var2.php, etc.
Once the test is completed, the winner will be the new original.php file, and there will be no need to store var1.php, etc. But now I need to redirect those that are no longer needed by the URLs to the corresponding .php original.
It could be ALOT 301 redirects in my .htaccess file. I also heard that the more things you have in your .htaccess file, the slower your site becomes, because the server must process everything in it before it can serve the page.
I can move the redirects to the actual URLs (like redirecting php to the actual var1.php file), but then I have some unnecessary files that inflate my server.
So I wonder what is the best practice here? is it safe to remove 301 redirects after that?
Jd isaacks
source share