Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi there,
Using Umbraco Cloud 7.12.4
I am creating a dynamic sitemap via a macro. The sitemap is using the URL /sitemapxml
I am trying to create a rewrite rule in the web.config to redirect /sitemap.xml to /sitemapxml
I currently have the following:
<rule name="Sitemap XML" enabled="true" stopProcessing="true"> <match url="sitemap.xml" /> <action type="Rewrite" url="sitemapxml" appendQueryString="false"/> </rule>
The above does not seem to work. Obviously doing something wrong here, but after searching on the web for ages, I cannot quite figure out what the issue is.
Also I have a few additional rules in my config file (for non www and https redirects).
Any assistance would be much appreciated.
Hi Gregory,
I have the following rewrite. My dynamic one is called /sitemap so you need to change that
<rule name="Sitemap.xml rewrite" stopProcessing="true"> <match url="^sitemap.xml$" /> <action type="Rewrite" url="/sitemap" appendQueryString="false" /> </rule>
So the match is regex and the rewrite url starts with /
Dave
Thanks a lot for that Dave.
It is now working.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
URL Rewrite - Sitemap not working
Hi there,
Using Umbraco Cloud 7.12.4
I am creating a dynamic sitemap via a macro. The sitemap is using the URL /sitemapxml
I am trying to create a rewrite rule in the web.config to redirect /sitemap.xml to /sitemapxml
I currently have the following:
The above does not seem to work. Obviously doing something wrong here, but after searching on the web for ages, I cannot quite figure out what the issue is.
Also I have a few additional rules in my config file (for non www and https redirects).
Any assistance would be much appreciated.
Hi Gregory,
I have the following rewrite. My dynamic one is called /sitemap so you need to change that
So the match is regex and the rewrite url starts with /
Dave
Thanks a lot for that Dave.
It is now working.
is working on a reply...