I'm trying to force everything in the vparse "folder" to open one PHP file...
I want:
Http://www.mysite.com/vparse/abc
to process the vparse file in my document root folder as PHP (this is to remove the "?var1=a&var2=b" from most of the links on my site.)
I've tried:
adding the below to my httpd.conf file.
<Location /vparse>
ForceType application/x-http-php
</Location>
and to the .htaccess
<Files vparse>
ForceType application/x-httpd-php
</Files>
I make the changes restart apache and it doesnt work.
Either way I get a "404 file not found" error.
BTW: I have root access to the server.