View Single Post
  #6 (permalink)  
Old 03-07-2008, 06:08 AM
Alan-Hart's Avatar
Alan-Hart Alan-Hart is offline
WebProWorld Member
 

Join Date: Jun 2007
Location: Swindon
Posts: 59
Alan-Hart RepRank 0
Default Re: 301 redirect problem?

why would you want to do this?

index.php is the homepage! surely this would be creating an infinite loop

myspacelayoutspimp.com/ is myspacelayoutspimp.com/index.php so you are trying to redirect a page to itself!

infinite loop =

myspacelayoutspimp.com/index.php -> redirects to -> myspacelayoutspimp.com/
myspacelayoutspimp.com/ -> redirects to -> myspacelayoutspimp.com/index.php
myspacelayoutspimp.com/index.php -> redirects to -> myspacelayoutspimp.com/
myspacelayoutspimp.com/ -> redirects to -> myspacelayoutspimp.com/index.php
myspacelayoutspimp.com/index.php -> redirects to -> myspacelayoutspimp.com/ etc etc

just change the HOME link on your pages to <a href="/">HOME</a> instead of <a href="/index.php">HOME</a>

Last edited by Alan-Hart : 03-07-2008 at 06:10 AM.
Reply With Quote