The url is <a href="http://dev.flow3.local/flow3/welcome">http://dev.flow3.local/flow3/welcome</a><br>Here is the error<br>CreateFile() &quot;C:\nginx/htmlindex.php/flow3/welcome&quot; failed (3: The system cannot find the path specified)<br>
<br>This is horribly wrong. I&#39;m using try_files for a very simple rewrite rule.<br>my server code is <br>server {<br>        listen  80;<br>        server_name  dev.flow3.local;<br>        <br>        location / {<br>
            root   html/flow3/Web;<br>            index index.php;<br>            try_files $uri $uri/ index.php$uri;<br> <br>        }<br>        error_page   500 502 503 504  /50x.html;<br> <br>       # pass the PHP scripts to FastCGI server listening on <a href="http://127.0.0.1:9000">127.0.0.1:9000</a><br>
        location ~ \.php$ {<br>            root   html/flow3/Web;<br>            fastcgi_connect_timeout 120;<br>            fastcgi_send_timeout 180;<br>            fastcgi_read_timeout 180;<br>            fastcgi_pass   <a href="http://127.0.0.1:9000">127.0.0.1:9000</a>;<br>
            fastcgi_index  index.php;<br>            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;<br>            include        fastcgi_params;<br>            <br>        }<br>        <br>        location ~ /\.ht {<br>
            deny  all;<br>        }<br>    }<br>