Skip to content

Instantly share code, notes, and snippets.

@TerribleDev
Created November 28, 2015 15:17
Show Gist options
  • Save TerribleDev/a45aa051f0dbc3d3245f to your computer and use it in GitHub Desktop.
Save TerribleDev/a45aa051f0dbc3d3245f to your computer and use it in GitHub Desktop.
Backward compat hexo's rss feed for hexo in IIS/azure
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="SpecificRewrite" stopProcessing="true">
<match url="^rss$" />
<action type="Rewrite" url="public/rss.xml" />
</rule>
</rules>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment