Url rewrite redirects only static files
up vote
0
down vote
favorite
I am running asp.net mvc application under IIS 10 on local machine.
On remote machine it is IIS 8.5
I have url rewrite config like that
<system.webServer>
<rewrite>
<rules>
<rule name="Redirect to userreport domain" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}" pattern="^my.url.com(.*)"></add>
</conditions>
<action type="Redirect" url="http://my.url1.com/{R:1}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
On local machine it redirects and works just fine.
On remote machine it redirects only static files (like .js), so it means url-rewrite module works.
I've tried to remove condition section, but it doesn't help, so it means that problem not in the "not met" condition,
asp.net-mvc iis url-rewrite-module
add a comment |
up vote
0
down vote
favorite
I am running asp.net mvc application under IIS 10 on local machine.
On remote machine it is IIS 8.5
I have url rewrite config like that
<system.webServer>
<rewrite>
<rules>
<rule name="Redirect to userreport domain" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}" pattern="^my.url.com(.*)"></add>
</conditions>
<action type="Redirect" url="http://my.url1.com/{R:1}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
On local machine it redirects and works just fine.
On remote machine it redirects only static files (like .js), so it means url-rewrite module works.
I've tried to remove condition section, but it doesn't help, so it means that problem not in the "not met" condition,
asp.net-mvc iis url-rewrite-module
docs.microsoft.com/en-us/iis/extensions/url-rewrite-module/… Tracing will tell.
– Lex Li
Nov 22 at 21:22
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am running asp.net mvc application under IIS 10 on local machine.
On remote machine it is IIS 8.5
I have url rewrite config like that
<system.webServer>
<rewrite>
<rules>
<rule name="Redirect to userreport domain" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}" pattern="^my.url.com(.*)"></add>
</conditions>
<action type="Redirect" url="http://my.url1.com/{R:1}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
On local machine it redirects and works just fine.
On remote machine it redirects only static files (like .js), so it means url-rewrite module works.
I've tried to remove condition section, but it doesn't help, so it means that problem not in the "not met" condition,
asp.net-mvc iis url-rewrite-module
I am running asp.net mvc application under IIS 10 on local machine.
On remote machine it is IIS 8.5
I have url rewrite config like that
<system.webServer>
<rewrite>
<rules>
<rule name="Redirect to userreport domain" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}" pattern="^my.url.com(.*)"></add>
</conditions>
<action type="Redirect" url="http://my.url1.com/{R:1}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
On local machine it redirects and works just fine.
On remote machine it redirects only static files (like .js), so it means url-rewrite module works.
I've tried to remove condition section, but it doesn't help, so it means that problem not in the "not met" condition,
asp.net-mvc iis url-rewrite-module
asp.net-mvc iis url-rewrite-module
asked Nov 22 at 15:54
Vadim K
73848
73848
docs.microsoft.com/en-us/iis/extensions/url-rewrite-module/… Tracing will tell.
– Lex Li
Nov 22 at 21:22
add a comment |
docs.microsoft.com/en-us/iis/extensions/url-rewrite-module/… Tracing will tell.
– Lex Li
Nov 22 at 21:22
docs.microsoft.com/en-us/iis/extensions/url-rewrite-module/… Tracing will tell.
– Lex Li
Nov 22 at 21:22
docs.microsoft.com/en-us/iis/extensions/url-rewrite-module/… Tracing will tell.
– Lex Li
Nov 22 at 21:22
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53434529%2furl-rewrite-redirects-only-static-files%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
docs.microsoft.com/en-us/iis/extensions/url-rewrite-module/… Tracing will tell.
– Lex Li
Nov 22 at 21:22