How to redirect specific pages in IIS or Apache

If you want to redirect all visitors from https://ezref.info/showpage.aspx to https://ezref.info/Page.aspx

Here is what will help if you need to redirect a dynamic content.

Open your web.config file and add the following to it (Make changes to the path= and destination= information)

<location path="https://ezref.info/showpage.aspx">

<system.webServer>

<httpRedirect enabled="true" destination="https://ezref.info/Page.aspx" httpResponseStatus="Permanent" />

</system.webServer>

</location>

The same option in .htaccess file would be

Redirect https://ezref.info/showpage.aspx https://ezref.info/Page.aspx