Hi,
I have the following in .htaccess file:
<FilesMatch "(article)$">
ForceType application/x-httpd-php
</FilesMatch>
and have an 'article' file that contains PHP script.
http://www.domain_name.com/article
works just fine,as expected.
but something like
http://www.domain_name.com/article/21062004
returns 404 Object Not Found error.
As far as I know it still should open article script.
Any ideas what can be wrong?