Hi, This article mentions a "look back" feature, but doesn't say what to put in the .htaccess file. Does anyone know what he means? Thanks for your help!
I got look back working by adding AcceptPathInfo On, but I can't seem to get force type working. When I do what is mentioned here, firefox always assumes that I want to download the file. http://www.websitepublisher.net/article/search_engine_friendly_urls/3
This code should force the file named "article" with no extension to be run as a php file. <Files article> ForceType application/x-httpd-php </Files> Code (markup): But it doesn't work. It instead tries to download the file to my desktop. Anyone know why this would be happening?
There's another directive that tells PHP to parse files with a .php extension. I have these two: AddHandler php5-script php AddType text/html php Code (markup): I have also seen lines more like these: AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps Code (markup): I'm not sure if this is what is causing the problem you are having. It might help to know what's in the file that gets downloaded to your desktop. Is it PHP source code or an HTML file or is it empty ?