htaccess is not working on iis

后端 未结 1 669
梦如初夏
梦如初夏 2021-01-20 01:44

how to convert .htaccess to web.config.

I just come to know that I need to use web.config instead of htaccess. Please find my htaccess below

RewriteE         


        
相关标签:
1条回答
  • 2021-01-20 02:35

    copy paste below code in your web.config

    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
      <system.webServer>
        <rewrite>
          <rules>
            <rule name="Imported Rule 1" 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="true" />
            </rule>
          </rules>
        </rewrite>
      </system.webServer>
    </configuration>
    
    0 讨论(0)
提交回复
热议问题