Sunday, 15 February 2015

asp.net mvc - URL Request Forwording -



asp.net mvc - URL Request Forwording -

i have website such foo.com want redirect request http://foo.com http://www.foo.com 1 way url redirect not efficient. there other way this.

you should install iis rewrite module here , add together rule in web.config file:

<rewrite> <rules> <rule name="redirect domain.com www" patternsyntax="wildcard" stopprocessing="true"> <match url="*" /> <conditions> <add input="{http_host}" pattern="domain.com" /> </conditions> <action type="redirect" url="http://www.domain.com/{r:0}" /> </rule> </rules> </rewrite>

asp.net-mvc

No comments:

Post a Comment