-
Posted to
Extensibility
by
slov
on
11-12-2007, 9:57 AM
OK, I guess you mean proxy content of www.thejuiceinnovations.co.uk/microsite through the root of www.terminalsix.co.uk web site?
ISAPI_Rewrite need to be installed on www.terminalsix.co.uk web server with the following configuration:
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} ^(www\.)?terminalsix.co.uk ...
-
Posted to
Extensibility
by
slov
on
11-12-2007, 7:53 AM
Is it possible in any version of IIS to create new custom server variable from ISAPI filter so that it will be available for other applications processing this request? I know about creating HTTP header, but we need to create server variable which name does not start from HTTP_.
-
Posted to
Extensibility
by
slov
on
11-12-2007, 7:46 AM
Please ask this question on ISAPI_Rewrite support forum, I'm sure this would be right solution for you:
http://www.helicontech.com/forum/default.htm
Please describe your problem in more details because it is unclear what site should be redirected where. Or better use real names if you want me to create rules for you.
-
Posted to
IIS7 - General
by
slov
on
10-02-2007, 8:42 AM
Jeff is right - this is a proxy not redirect.
But IIS can become a proxy... if you install ISAPI_Rewrite http://www.helicontech.com/isapi_rewrite/
Here is a rule example to proxy your JBoss application into /jboss directory on your IIS web site:
RewriteEngine on
RewriteBase /
RewriteRule ^jboss(.*) http://localhost:8080$1 [NC,P]
If you ...
-
Posted to
General
by
slov
on
09-19-2007, 2:38 AM
I know that, but it needs at least one normal response from IIS to put it into the cache - this is where you can intercept it. If you can add something to response to instruct http.sys not to put it into the cache it will never get there and specific requests will never be served from the cache.
-
Posted to
General
by
slov
on
09-18-2007, 3:16 PM
Hello.
Is it possible to turn http.sys kernel cache off on per RESPONSE basis? I.e. are there any headers or other properties that can be put into response so that http.sys will not try to put it into cache?
-
Posted to
IIS7 - General
by
slov
on
09-14-2007, 2:26 AM
Have you tried to ask this question to the ISAPI_Rewrite support forum? If yes, please provide me direct link to the topic and I will try to resolve it ASAP. Please note that only ISAPI_Rewrite 3.0 natively support Windows Server 2008 operating system.
-
Posted to
General
by
slov
on
09-13-2007, 6:26 AM
Yes, it seems like it is ISAPI_Rewrite. Please ask your question in ISAPI_Rewrite support forum, I don't want to start support discussions here. Here is a direct link: http://www.helicontech.com/forum/forum_topics-FID-2.htm
It seems like the filter is working and you have problems with configuration. Please send us your httpd.ini files, ...
-
Posted to
IIS7 - General
by
slov
on
09-12-2007, 12:44 PM
1) Everybody loves freeware, but people needs to survive somehow. I'd rather prefer to see ISAPI_Rewrite as pre-installed option on most hosting providers so you don't need to pay for it ;-)
2) With the Lite version you actually have two alternative solutions.:
First is to precede every rule with
RewriteCond %{HTTP:Host} ...
-
Posted to
IIS7 - General
by
slov
on
09-12-2007, 12:33 PM
I understand, but for ISAPI_Rewrite this would mean to immediately drop support for any IIS versions except IIS7.
I don't actually see anything evil in ISAPIs itself. They are fast and reliable and they work.
Possibly we will consider to develop some "stub" IIS7 module to load ISAPIs as IIS7 modules, if it is technically ...