2

我想做一些类似下面的事情

在此处输入图像描述

在下面的文件夹结构应用程序文件夹中包含我的应用程序的源代码,它在 PHP 中,并且 PHP 代码使用系统文件夹中的一些文件。应用程序文件夹位于 wwwroot 的一侧。

在此处输入图像描述

并且我的 wwwroot 包含以下文件。在此文件夹中,我有一个 Web.config,其中包含以下网址:

 configuration>
  <system.webServer>
    <rewrite>
        <rules>
          <rule name="Imported Rule Test" stopProcessing="true">
            <match url="^(.*)$" ignoreCase="false" />
            <conditions>
              <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
              <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
              <add input="{URL}" pattern="^system.*" ignoreCase="false" />
            </conditions>
            <action type="Rewrite" url="/index.php?/{R:1}" appendQueryString="false" />
          </rule>
          <rule name="Imported Rule 2" stopProcessing="true">
            <match url="^(.*)$" ignoreCase="false" />
            <conditions>
              <add input="{URL}" pattern="^application.*" ignoreCase="false" />
            </conditions>
            <action type="Rewrite" url="/index.php?/{R:1}" appendQueryString="false" />
          </rule>
          <rule name="Imported Rule 3" stopProcessing="true">
            <match url="^(.*)$" ignoreCase="false" />
            <conditions>
              <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
              <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
            </conditions>
            <action type="Rewrite" url="index.php?/{R:1}" appendQueryString="false" />
          </rule>
        </rules>
      </rewrite>
  </system.webServer>
</configuration>

我的问题是如何在 IIS 7 中部署这个 PHP 站点?

4

1 回答 1

0

虚拟目录是一个目录名,用在一个地址中,它对应于服务器上的一个物理目录。您可以添加一个虚拟目录,该目录将包含站点或应用程序中的目录内容,而无需将内容物理地移动到该站点或应用程序目录中。

创建 iis7 站点应用程序和虚拟目录

另一个指南

于 2013-06-15T06:39:45.533 回答