IIS中的Phalcon 1.2.4

I'm triying to use Phalcon 1.2.4 on IIS

My Environment: WindowsServer08 R2 x64 IIS 7 + PHP FastCGI + URL Rewrite

When i follow:

Official Tutorial 1

I can run IndexController but I can't run SingupController

![enter image description here][1]

It's always getting a 404 Error

If I change my Environment to XAMPP & Copy My Tutorial Project . It can be executed on XAMPP without any issues.

Does Phalcon support IIS?

It worked for me, i follow these steps.

  1. put web.config file from http://www.sitepoint.com/phalcon-windows-azure/ on public folder

  2. edit index.php from public folder and add
    //Setup a base URI so that all generated URIs include the "tutorial" folder $di->set('url', function(){ $url = new \Phalcon\Mvc\Url(); $url->setBaseUri('/example1/public/'); return $url; });

    note that i have this example on a directory called example1, ie c:\inetpub\wwwroot\example1

  3. visit http://localhost/example1/public/