以下包含暫時解法,因為是直接動WordPress Kernel
1. WordPress 網址無法轉址(Permalinks)
要修改 web.config 檔
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="wordpress" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
...