1

我在我的网站 www.22shruti.com/blog/ 上设置了 Wordpress 博客 v2.9.2(共享 IIS 7.0 托管(服务器上没有管理员权限)、PHP 5.2.13 FastCGI、WHB 操作系统 2008、没有 url 重写模块已安装。)

由于从 SEO 的角度来看,漂亮的永久链接很有用,当我尝试通过管理员将 WP 永久链接设置更改为自定义“/%year%/%monthnum%/%postname%/”时,我在 www.22shruti.com/ 上收到以下消息博客/

“没有找到对不起,但你正在寻找不在这里的东西。”

在这种情况下,实现所需永久链接格式的分步解决方案是什么?非常感谢帮助

4

1 回答 1

3

我想你会在这里找到答案 - How To Set Pretty Permalinks in Wordpress Runs On IIS 7我想你需要将一个 web.config 文件放在根文件夹中,如:

<?xml version="1.0"?>
<configuration>
 <system.webServer>
 <defaultDocument>
  <files>
    <remove value="index.php" />
    <add value="index.php" />
  </files>
 </defaultDocument>
<rewrite>
 <rules>
     <rule name="Main Rule" 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="index.php/{R:0}" />
     </rule>
 </rules>
</rewrite>
</system.webServer>
</configuration>
于 2011-02-10T05:14:08.897 回答