About two years ago, I was running ZF with IIRF. I had the same problem
with it not propagating the GET parameters. I hacked the IIRF code to
get it to pass the GET parms the same way IsapiRewrite does. I can give
you the code if you're interested, however, I haven't actually used it
in more than a year and a half, so I don't know if it'll still work
properly. I haven't kept up with any newer versions of IIRF (the project
had seemed to die right about the time I was doing this).
Regards,
Bryce Lohr
drj201 wrote:
Hello,
Does anyone use IIRF with Zend Framework and IIS?
I am using IIS6 and I am having great difficulty creating the correct
rewrite rules for IIRF that will work with Zend Framework.
So far I have the following in my IsapiRewrite4.ini:
RewriteRule ^/(.*(js|ico|gif|jpg|png|flv|swf|css))$ /$1 [L,I,U]
RewriteRule ^(.*)$ /index.php [L,I,U]
This works fine EXCEPT when making any HTTP GET requests such as:
http://www.example.com/search?query=myquery
The contents of $_GET are blank yet it is fine on Apache. My rule is
incorrect.
The example given in the Zend Wiki
(http://framework.zend.com/wiki/display/ZFDEV/Configuring+Your+URL+Rewriter)
is far far too simplified and I have found little to nothing elsewhere.
Can anyone help me please?
Regards,
David