Wordpress Pretty Permalinks重定向到iis7上的主页

时间:2014-01-29 09:27:19

标签: wordpress permalinks

我在iis7 [Windows server 2008 R2]上有我的WP站点;已经探索了很多找到正确的解决方案,但没有任何效果:(

http://cricketclips.net/late-overs-batting-flurry-from-luke-wright-pepsi-ipl-2013-kxip-vs-pw-match-29/

将以下代码添加到root

中的web.config
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="WordPress Rule" stopProcessing="true">
<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?page_id={R:0}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>

但仍无效

我的网址正在重写但被重定向到主页而不是single.php和其他网页(即index.php而不是single.php)

已检查服务器“FCGI”和“URL重写模块”,两者都已安装。

在这方面的任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:2)

This link帮助我让我的permlink工作!

按照步骤

  1. 将永久链接结构更改为

    http://example.com/index.php/%post_id%/%postname%/

  2. 检查结果瞧!它正在工作......

  3. 然后将链接更改回

    http://example.com/%post_id%/%postname%/

  4. 从此以后很高兴:)

答案 1 :(得分:0)

您可以从此处更改永久链接设置

http://localhost/ {your_projects_name} /wp-admin/options-permalink.php