Been looking at the article about making php based sites indexable by search engines: http://www.phpbuilder.com/columns/tim19990117.php3
It says that by adding a new section to your access.conf (or httpd.conf as i'm running apache 1.3.12)
<Location /local>
ForceType application/x-httpd-php3
</Location>
Then any requests under www.somehost.com/local/ will call a script.
I've got two questions:
1) What will the script be called and where will it reside?
2) Is the specified location (from the httpd.conf) the path relative to the server or the web site?
In my case i want a url request such as:
www.somehost.com/dev/123/345/
to parse out two variables a=123 and b=345 to the file /dev/index.php
Thanks for your help,
Tom.