文件夹结构
docroot
|- wordpress
|- web.config
|- wp-content
|- japi
|- index.php
\\- web.config
...
...
正如你所看到的,有两个网站。配置一个在wordpress文件夹中,另一个在wordpress/wp-content/japi文件夹中。
japi/web.config
<rules>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php?q={R:1}" appendQueryString="true" />
</rule>
</rules>
现在当我要求
http://domain.com/wordpress/wp-content/japi/test. 日本/网络。配置似乎被忽略了,只有wordpress/web。正在考虑配置。
我怎样才能解决这个问题?