我想从URL中删除index.php,我使用WordPress和iis7 .我该怎么做
mkshixfv1#
使用此web.config
<?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在下面的评论)
/%postname%/
rt4zxlrg2#
另一个相当快速的解决方案,在使用Windows Azure网站的情况下,是使用Microsoft WebMatrix登录到您的网站,只需创建一个web.config文件as this article pointed out .这解决了它.不需要安装URL Rewrite extension或类似的东西自己. MS Webmatrix似乎很容易解决这个问题.
Microsoft WebMatrix
URL Rewrite extension
xvw2m8pv3#
您可以轻松地从WordPress URL中删除index.php,为此,您可以使用两种方法:1.在你的WordPress控制面板中,进入设置>永久链接,然后在公共设置下选择发布名称。保存更改。或1.确保WordPress安装根目录中的.htaccess文件包含以下代码:第一个月如果您无法访问.htaccess文件,则可以使用Yoast SEO或All in One SEO等插件为您生成它。来源:Webtalkhub
3条答案
按热度按时间mkshixfv1#
使用此web.config
字符串
然后在permalinks页面中,设置“自定义结构”并给予值
/%postname%/
请注意,需要安装特定于IIS版本的URL重写模块才能实现此功能(感谢@Spikolynn在下面的评论)
rt4zxlrg2#
另一个相当快速的解决方案,在使用Windows Azure网站的情况下,是使用
Microsoft WebMatrix
登录到您的网站,只需创建一个web.config文件as this article pointed out .这解决了它.不需要安装URL Rewrite extension
或类似的东西自己. MS Webmatrix似乎很容易解决这个问题.xvw2m8pv3#
您可以轻松地从WordPress URL中删除index.php,为此,您可以使用两种方法:
1.在你的WordPress控制面板中,进入设置>永久链接,然后在公共设置下选择发布名称。保存更改。
或
1.确保WordPress安装根目录中的.htaccess文件包含以下代码:
第一个月
如果您无法访问.htaccess文件,则可以使用Yoast SEO或All in One SEO等插件为您生成它。
来源:Webtalkhub