10

我想从 url 中删除 index.php ,我正在使用 wordpress 和 iis7 。我怎样才能做到这一点

4

2 回答 2

11

使用这个 web.config

(web.config是IIS相当于apache webservers中的.htaccess文件,可以在根目录下找到,如果没有,需要自己创建一个。)

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
 <defaultDocument>
     <!-- Set the default document -->
      <files>
        <remove value="index.php" />
        <add value="index.php" />
      </files>
    </defaultDocument>
        <httpErrors errorMode="Detailed"/>
    <rewrite>
        <rules>
            <rule name="wordpress" patternSyntax="Wildcard">
                <match url="*" />
                    <conditions>
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                    </conditions>
                <action type="Rewrite" url="index.php" />
            </rule>
        </rules>
    </rewrite>
</system.webServer>
</configuration>

然后在永久链接页面中,设置“自定义结构”并给出值/%postname%/

请注意,需要安装特定于 IIS 版本的 URL 重写模块才能运行(感谢@Spikolynn 在下面的评论)

于 2013-09-27T12:16:27.280 回答
0

在您使用 Windows Azure 网站的情况下,另一个非常快速的解决方案是使用Microsoft WebMatrix登录到您的网站并创建一个 web.config 文件,正如本文指出的那样。这样就解决了。无需自己安装URL Rewrite extension或类似的东西。MS Webmatrix 似乎很容易解决这个问题。

于 2013-07-16T10:34:17.083 回答