I'm running a website where I use php and generate "friendly" URLS. My live sit is working, but I switched to ApacheII on my developement machine and have problems
In an .htaccess file I have:
{code]
<Files listpage>
ForceType application/x-httpd-php
</Files>
[/code]
If I access [
mysite...] it runs the script on my live site and my development site.
But I want to access [
mysite...] This runs the script on my live site (Apache 1 I think) but my development site gives a 404 error. Any ideas?