Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.
Yay... Take Me to the Community!
Welcome to the Community Exchange, where community members ask and answer questions about DNN. To get started, just start typing your question below and either select one of the suggested questions or ask a new question of your own.
Return to previous page
Hi,
I have a DNN site. And I am forming Url through code. For the SEO purpose I have changed some url names.
For eg. From : www.domain.com/en/our-services/service1
to : www.domain.com/en/our-services/myservice1
Now For 301 redirect I write following section in web.config :
<rule name="RedirectService" stopProcessing="true"> <match url="(.*)" /> <conditions logicalGrouping="MatchAny" trackAllCaptures="false"> <add input="{HTTP_HOST}{REQUEST_URI}" pattern="domain.com/en/our-services/service1" /> </conditions> </rule>
It is giving error as: ERR_TOO_MANY_REDIRECTS
Any help would be appreciated...