我在iis服务器版本8.0中安装了wordpress。我在wordpress固定链接中添加了自定义结构。服务器不支持永久链接。所以我创建了web.config来从url.i中删除index.php,但是不能删除index.php。在root网站上我有web.config文件。我创建了另一个配置文件,从子文件夹中的url中删除index.php。它不起作用。是否有任何解决方案可以删除它。
网址网址:http://www.cyz.com/blog/index.php/links 至 网址:http://www.cyz.com/blog/links
博客文件夹中的代码:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<defaultDocument enabled="true">
<files>
<add value="blog/index.php" />
</files>
</defaultDocument>
<rewrite>
<rules>
<rule name="WPurls" enabled="true" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="blog/index.php/{R:0}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>