私は URL 書き換えルールに慣れていないので、助けていただければ幸いです。
次のいずれかを処理する IIS URL 書き換えを作成しようとしています。
http://localhost/homepage/contact-us.aspx -> http://localhost/contact-us.aspx
http://localhost/homepage/about-us.aspx -> http://localhost/about-us.aspx
何か案は?
私は URL 書き換えルールに慣れていないので、助けていただければ幸いです。
次のいずれかを処理する IIS URL 書き換えを作成しようとしています。
http://localhost/homepage/contact-us.aspx -> http://localhost/contact-us.aspx
http://localhost/homepage/about-us.aspx -> http://localhost/about-us.aspx
何か案は?
私はこれをテストしていませんが、web.config ファイルに次のようなものがあると思います。
web.config ファイルを編集して IIS に移動すると、ルールをテストする場合にルールが表示されます。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="rewriterule1" enabled="true" stopProcessing="false">
<match url="homepage/(.*)" />
<action type="Rewrite" url="http://localhost/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>