Hello.
I've implemented search-engine friendly URLs on several servers using the
Forcetype feature to run my PHP script "pages", e.g.,
<Files pages>
ForceType application/x-httpd-php
</Files>
This allows me to use urls such as:
www.myhost.com/pages/home
On one server (running: NetWare IA32 NLM 6 50 Intel Pentium, Apache/2.0.52
(NETWARE) mod_jk/1.2.6a PHP/5.0.3 ), I am having a problem.
When the URL ends in the name of my script, it works ok, e.g.:
www.myhost.com/pages
But when the url includes additional elements after "pages" (e.g.,
www.myhost.com/pages/home), instead of stopping at "pages", apache is
continuing to parse the url, and looking for a file
"/pages/home/index.html" (which does not exist, of course).
Any help is much appreciated.
-steve