Latest

6/recent/ticker-posts

Header Ads Widget

Remove .aspx from url in asp.net c#

In this article we learn how can we remove .aspx from url in asp.net c# projects.


Simply add this in web.config file of project

<system.webServer>
    <rewrite>
      <rules>
        <rule name="RewriteASPX">
          <match url="(.*)"/>
          <conditions logicalGrouping="MatchAll">
            <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
            <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
          </conditions>
          <action type="Rewrite" url="{R:1}.aspx"/>
        </rule>
      </rules>
    </rewrite>
</system.webServer>

Post a Comment

0 Comments