ブログを変更し、URL の末尾に .aspx がなくなりましたが、それ以外は同じです。そう
/blog/post/Using-Memory-Theory-to-Increase-Inbound-Results.aspx.
になる
/blog/tips/using-memory-theory-to-increase-inbound-results
古い URL をすべて新しいリンクに 301 したいと思います。
これは私が試したルールですが、404 ページにリダイレクトされます。
<rule name="Rewrite old blog to PHP format (compound route)" stopProcessing="false">
<match url="([^/]+)/([^/\?]+)\.aspx$" />
<action type="Rewrite" url="index.php?route={R:1}&page={R:2}" redirectType="Temporary" />
</rule>