| Posted: 30 August 2005 at 5:04am | IP Logged
|
|
|
>So my first question is. is this typicall?
No, installation should restarted IIS after filter addition. Restart failure probably means that there are some problems with your server.
>Second question: Now I'm trying to use the isapii filter. Currently, my site (support.mysite.com) is being redirected to: www.mysite.com/support/ via IIS settings.
You should remove this redirect. It will not allow ISAPI_Rewrite to work.
>I choose to use your filter so that any url parameters that are used ALSO get redirected to the site. SO. How do I get your filter to redirect the entire site and it's url parameters to another subdomain?
RewriteCond Host: support\.mysite\.com
RewriteRule (.*) http\://www.mysite.com/support$1 [I,R]
__________________ With best wishes,
Alex Ostapenko,
Helicon Tech.
|