I read Tim's article on building dynamic pages with search engine's in mind. I got It all working, except I had to use a workaround someone suggested because I was on FreeBSD and the <Files> directive only works in .htaccess on linux. So Basicaly I make a phony link like:
mysite.com/type/5/print/0/
and I get a 404 error because it doesn't exist, so I put a line in my .htaccess that says ErrorDocument 404 /index.php3.
In index.php3 the first thing I do is send
header : 200 OK
Then I parse the URL, make vaiables and create my page.
All is well, but I don't think I'm showing up on search engines and I don't have the foggiest idea why. It's not a .php or .php3 extension, no query strings.
Any ideas?
Thanx
J