Codeigniter 3 Mod_rewrite Plesk

时间:2017-02-19 07:30:24

标签: codeigniter iis plesk

所以我在GoDaddy上传了我的网站,并使用了Windows主机(Plesk)。我唯一的问题是,因为据我所知它没有运行Apache,它不会读取我的.htaccess文件,该文件包含我所有的mod_rewrite代码,用于删除URL中的index.php。所以我的问题是如何在Plesk中实现mod_rewrite?

1 个答案:

答案 0 :(得分:0)

您可以将.htaccess文件重写为IIS的web.config并将其放在/ httpdocs文件夹中。

您可以通过thisthis在线转换器等指南进行操作,或者如果您有Windows Server,则可以通过此guide转换.htaccess(或者您可以共享.htaccess和我会尝试为你转换它)

我发现这个snippet也许它可以帮到你:

<?xml version="1.0" encoding="UTF-8"?>
  <configuration>
      <system.webServer>
        <rewrite>
          <rules>
              <rule name="Index">
              <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/{R:1}" />
            </rule>
          </rules>
        </rewrite>
      </system.webServer>
</configuration>