Pete wrote:
rich@xxxxxxxxxxxxxxx wrote:
Gunnar Hjalmarsson wrote:
1) Do you *agree* that it is preferrable that the search engines
register the URLs that 'next', 'prev', 'rand', 'goto' and 'home' links
redirect *to* rather than registering the dynamic Ringlink URLs?
Yes this would be far preferable.
I also agree, just confused about how this is accomplished within the
Ringlink program (.htaccess file)?
http://www.seotoolset.com/seo/newsletter/0405/redirects.html
No, no. With directives in an .htaccess file you configure an Apache web
server directly.
I'm talking about just having Ringlink print the appropriate CGI
response headers, i.e. instead of just
print "Location: http://www.example.com/some/site.html\n\n";
the Ringlink program would include
print "Status: 301 Moved Permanently\n";
print "Location: http://www.example.com/some/site.html\n\n";
The web server would convert those CGI response headers to the
equivalent HTTP response headers. You wouldn't need to do anything.
Btw, I have already made the changes in the Ringlink CVS repository.
/ Gunnar