在IIS7中使用URL重写以获取友好URL的问题

时间:2011-09-27 11:56:57

标签: iis-7 url-rewriting

我正在尝试使用URL Rewrite在我的IIS7服务器中制作一些重写规则。 例如,我有网址mydomain.com/data.php?id=1,我想将其转换为mydomain.com/archive/1

目前我有:

    <rule name="Ugly to friendly" stopProcessing="true">
  <match url="^data\.php$" />
  <conditions>
      <add input="{REQUEST_METHOD}" pattern="^POST$" negate="true" />
      <add input="{QUERY_STRING}" pattern="^([^=&amp;]+)=([^=&amp;]+)$" />
  </conditions>
  <action type="Redirect" url="archive/{C:2}" appendQueryString="false" /> 
</rule>

<rule name="Friendly to ugly" stopProcessing="true">
  <match url="archive/(.+)" />
  <conditions>
      <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
      <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
  </conditions>
  <action type="Rewrite" url="data.php?id={R:1}" />
</rule>

但它不起作用(读作“没有该规则的页面显示正常,但是当添加规则时,不显示css / imgs)。 很奇怪,因为萤火虫告诉我一切都好(200 OK)(也许它也会混淆?)

此致

1 个答案:

答案 0 :(得分:0)

对不起,代码很好。我的页面(data.php)错了。我没有使用来自php文件的相对路径的所有imgs / css,而应该使用来自根的相对路径编写那些。

我的意思是,而不是“img src =”../../ test.jpg“我应该写”img src =“/ folder1 / fol”。

注意路径开始时的“/”。