Remove aspx extension using IIS Rewrite

To remove aspx extension or other extensions such as php , or asp,  you can use the below IIS Rewrite code:

<rule name="RemoveASPX" enabled="true" stopProcessing="true">

    <match url="(.*)\.aspx" />

    <action type="Redirect" url="{R:1}" />

</rule>

<rule name="AddASPX" enabled="true">

    <match url=".*" negate="false" />

        <conditions>

     <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />

     <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />

     <add input="{URL}" pattern="(.*)\.(.*)" negate="true" />

        </conditions>

    <action type="Rewrite" url="{R:0}.aspx" />

</rule>

 

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

SQL server- network related or instance-specific error happened while connection establishing

  Instance-specific or network related error happening while connecting to SQL server   Please...

OleDB connection string examples

OleDB connection string examples MS Access (Jet) "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA...

Do you allow custom COM components?

Do you allow custom COM components? We are not offering to install the custom COM components...

Error when accessing a WCF services

Error when accessing a WCF services Error when accessing a WCF service: "IIS specified...

How to cache static contents to client with UseMaxAge?

You can consider to caches static contents to the client with UseMaxAge if your website has too...

Powered by WHMCompleteSolution