在iis7中从WordPress URL中删除index.php

wh6knrhe  于 2023-11-17  发布在  WordPress
关注(0)|答案(3)|浏览(98)

我想从URL中删除index.php,我使用WordPress和iis7 .我该怎么做

mkshixfv

mkshixfv1#

使用此web.config

  • (web.config是Apache webservers中IIS的.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>

字符串
然后在permalinks页面中,设置“自定义结构”并给予值/%postname%/
请注意,需要安装特定于IIS版本的URL重写模块才能实现此功能(感谢@Spikolynn在下面的评论)

rt4zxlrg

rt4zxlrg2#

另一个相当快速的解决方案,在使用Windows Azure网站的情况下,是使用Microsoft WebMatrix登录到您的网站,只需创建一个web.config文件as this article pointed out .这解决了它.不需要安装URL Rewrite extension或类似的东西自己. MS Webmatrix似乎很容易解决这个问题.

xvw2m8pv

xvw2m8pv3#

您可以轻松地从WordPress URL中删除index.php,为此,您可以使用两种方法:
1.在你的WordPress控制面板中,进入设置>永久链接,然后在公共设置下选择发布名称。保存更改。

1.确保WordPress安装根目录中的.htaccess文件包含以下代码:
第一个月
如果您无法访问.htaccess文件,则可以使用Yoast SEO或All in One SEO等插件为您生成它。
来源:Webtalkhub

相关问题