This has been covered before, but I was just setting up a new force type on our servers and thought I would mention it for the fun of it. You see lots of stuff about using mod_rewrite to make friendly URLs or SEO friendly URLs. But, if you are using PHP (and I guess other Apache modules) you can do it without mod_rewrite. We have been doing this for a while at dealnews. Even before SEO was an issue.
Setting up Apache
From the docs, the ForceType directive “forces all matching files to be served as the content type given by media type.” Here is an example configuration:
<Location /deals>
ForceType application/x-httpd-php
</Location>
Now any URL like …
[Read more]