Welcome Guest, Not a member yet? Register   Sign In
.htaccess on IIS / web.config
#1

[eluser]Farid[/eluser]
I used .htaccess for most of my linux sites, but this time i uploaded a site to windows server IIS. there .htaccess is not working, i replaced it with web.config, but that didn't resolved the problem.

my htaccess code is

Code:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]

and my web.config code is here

Code:
<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}" />
    </rule>
  </rules>
</rewrite>

how to solve this problem




Theme © iAndrew 2016 - Forum software by © MyBB