But what if I want _all_ of my directories to go this way:
www.foobar.com
www.foobar.com/news
www.foobar.com/files
Should be processed with the same form.
How do I do this?
I would like to do it as explained in this article:
http://www.phpbuilder.com/columns/tim19990117.php3
To me, it's easier. The only problem is that in this article he uses a
/local directory so that when you enter
www.foobar.com/local/news/02 a script named local in your document root is
executed with a php processor. I'd like to go one step further: having the
same script executed whenever a connection is made. The problem is that
where he says:
<Location /local>
ForceType application/x-httpd-php3
</Location>
I should place:
<Location />
ForceType application/x-httpd-php3
</Location>
And that way a script named "" will be searched for right? Now it's quite
impossible to do this.
So how do I solve this? And I don't like using to much apache-specific
features because I don't run my own webserver and have to do everything
using the .htaccess files provided by my ISP
Rutger