I have two methods for you to use here:
1.Open Internet Information Services (IIS) Manager
2.Modify the web.config file directly
<system.webServer>
<rewrite>
<rules>
<rule name="test" stopProcessing="true">
<match url="(.*)"/>
<action type="Redirect" url="https://www.lasletrasdelrock.com:8880/View/Index.aspx"/>
<conditions>
</conditions>
</rule>
</rules>
</rewrite>
</system.webServer>
Tips: Since I did not focus on the study of regular expressions in order to show the method. Here my regular expression (.*) means that all URLs entered comply with this rule, and you need to check the relevant documentation of the regular expression for further settings.
Best regards,
Qi You
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.