使用PHP重写规则在IIS服务器中不起作用

时间:2013-05-09 17:07:21

标签: php .htaccess iis url-rewriting rewrite

嗨,朋友们。我正在创建一个带有重写规则的.htaccess文件。它在localhost中工作正常,但在现场,服务器上它无法正常工作。我的托管使用了一个Window服务器。

我在.htaccess文件中写了这条规则:

RewriteEngine On
RewriteBase /project_name/

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !example.php
RewriteCond %{REQUEST_URI} !(.*)/$

RewriteRule (.*) pages.php?page_slug=$1 [L]

1 个答案:

答案 0 :(得分:0)

对于在IIS服务器上运行wordpress的情况,您需要在根目录中创建web.config然后将代码放在下面,

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <rewrite>
      <rules>
        <rule name="wordpress" 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" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>