I've been using EasyPHP with great results but ran into an odd issue. I have a .htaccess which rewrites all URLs to a single PHP file, passing the URL as a parameter. (ex. /abc/def/ghi/ actually goes to my.php?url=abc/def/ghi). This works great, but if I add a colon in the url, then I automatically get the server's default 404 page. (ex. /abc/def/id:5/ is a 404 page, not rewritten to my.php?url=abc/def/id:5)
↧