Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

the blogengine slug removal does not work because the other slug rule is first #57

Closed
jphellemons opened this issue Feb 24, 2014 · 0 comments

Comments

@jphellemons
Copy link
Contributor

so you have to swap the order of the slug url rewrite rules in the web.config:

<rule name="BlogEngine slug" stopProcessing="true">
          <match url="^post/(.*)\.aspx" ignoreCase="true"/>
          <action type="Redirect" redirectType="Permanent" url="/post/{R:1}"/>
        </rule>
        <rule name="slug" stopProcessing="true">
          <match url="^post/(.*)" ignoreCase="true"/>
          <action type="Rewrite" url="/?slug={R:1}"/>
        </rule>
madskristensen added a commit that referenced this issue Apr 9, 2014
Fix #57 - change the order of rewrite rules so that the more specific ru...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant