0

我在 Win7 上使用 Drupal 6.14。除了应该写入站点/默认/文件的文件试图写入/之外,一切似乎都正常工作。该站点已从 linux 安装中移出,该安装正在正确写入文件。我已经设置了一个带有 drupal 重写规则的 web.config。不知道我应该检查什么或在哪里检查。谢谢你的帮助。

<rule name="Drupal Clean URLs" 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?q={R:1}" appendQueryString="true" />
</rule>
4

1 回答 1

0

您可以检查文件系统路径在/admin/settings/file-system. (我猜出于某种原因它是空的。)

于 2010-06-01T01:47:11.000 回答