Created
November 28, 2015 15:17
-
-
Save TerribleDev/a45aa051f0dbc3d3245f to your computer and use it in GitHub Desktop.
Backward compat hexo's rss feed for hexo in IIS/azure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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